Create filepath if it's not available

G

Guest

I use the following to save a file to a new folder. How can I have it check
to see if the filepath exists, and if not go ahead and create the path?

ActiveWorkbook.SaveAs Filename:= _
"\\Fl-msjf-fs1\Data\Data\RECOVERY\EXLDATA\Loan Recovery MIS\" &
MyDate & "\Gross Placement Batch Tracks\Product Breakdown\Quaternary GBT
Prod_Breakdown " & MyDate & ".xls" _
, FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False
 
A

AMDRIT

from
http://cwashington.netreach.net/depo/view.asp?Index=1027&ScriptType=vbscript


Dim oFso

Set oFso = CreateObject("Scripting.FileSystemObject")

WScript.Echo MakePath(oFso, "C:\TEMP\FRED\BLOGGS")

' MakePath
' Arguments:
' oFso - Instance of FileSystemObject
' sPath - Required path (must be fully qualified)
' Returns:
' True - Path now exists
' False - Path does not exist
Function MakePath(oFso, sPath)
' Default result
MakePath = False

' Fail if drive is not valid
If Not oFso.DriveExists(oFso.GetDriveName(sPath)) Then Exit Function

' Succeed if folder exists
If oFso.FolderExists(sPath) Then
MakePath = True
Exit Function
End if

' Call self to ensure parent path exists
If Not MakePath(oFso, oFso.GetParentFolderName(sPath)) Then Exit
function

' Create folder
On Error Resume next
oFso.CreateFolder sPath
MakePath = oFso.FolderExists(sPath)
End function
 
D

David Lloyd

Stephanie:

VBA contains a Dir function for examining files and directories, and a MkDir
function for creating directories. If you pass the folder path to the Dir
function, it will return an empty string ("") if it does not exist. Both
functions are documented in VBA Help.

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


I use the following to save a file to a new folder. How can I have it check
to see if the filepath exists, and if not go ahead and create the path?

ActiveWorkbook.SaveAs Filename:= _
"\\Fl-msjf-fs1\Data\Data\RECOVERY\EXLDATA\Loan Recovery MIS\" &
MyDate & "\Gross Placement Batch Tracks\Product Breakdown\Quaternary GBT
Prod_Breakdown " & MyDate & ".xls" _
, FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Filepath and Updating Links 2
MyValue 3
Tuesday and filedate 1
ChDir - Specify Folder 5
Create CSV 3
Insert Todays Date - 3 in file name 1
Save as marco 3
VBA code working in excel2003 but not in excel2007 2

Top