ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   check and create folder for saveas (https://www.excelbanter.com/excel-programming/314653-check-create-folder-saveas.html)

SUNIL

check and create folder for saveas
 
how do you chech if a folder exists and create one on A: drive is it is not
there ?
Please help a newbie- Thanks :-}




Bob Phillips[_6_]

check and create folder for saveas
 
Hi Sunil,

One way

Sub Test()
Dim sFolder As String

sFolder = "C:\Mytest\New Dir"
If Not FolderExists(sFolder) Then
MkDir sFolder
End If

End Sub

'-----------------------------------------------------------------
Function FolderExists(Folder) As Boolean
'-----------------------------------------------------------------
Dim sFolder As String
On Error Resume Next
sFolder = Dir(Folder, vbDirectory)
If sFolder < "" Then
If (GetAttr(sFolder) And vbDirectory) = vbDirectory Then
FolderExists = True
End If
End If
End Function


--

HTH

RP

"Sunil" wrote in message
...
how do you chech if a folder exists and create one on A: drive is it is

not
there ?
Please help a newbie- Thanks :-}






Dave Peterson[_3_]

check and create folder for saveas
 
Another way is to just ignore the error if there's a folder already there.

on error resume next
mkdir "a:\myfolder"
on error goto 0

This assumes that you wouldn't have a filename that has that name.



Sunil wrote:

how do you chech if a folder exists and create one on A: drive is it is not
there ?
Please help a newbie- Thanks :-}


--

Dave Peterson


Dave Peterson[_3_]

check and create folder for saveas
 
If c:\mytest didn't exist, then I get an error when I try to make:
c:\mytest\new dir in one statement.


Bob Phillips wrote:

Hi Sunil,

One way

Sub Test()
Dim sFolder As String

sFolder = "C:\Mytest\New Dir"
If Not FolderExists(sFolder) Then
MkDir sFolder
End If

End Sub

'-----------------------------------------------------------------
Function FolderExists(Folder) As Boolean
'-----------------------------------------------------------------
Dim sFolder As String
On Error Resume Next
sFolder = Dir(Folder, vbDirectory)
If sFolder < "" Then
If (GetAttr(sFolder) And vbDirectory) = vbDirectory Then
FolderExists = True
End If
End If
End Function

--

HTH

RP

"Sunil" wrote in message
...
how do you chech if a folder exists and create one on A: drive is it is

not
there ?
Please help a newbie- Thanks :-}




--

Dave Peterson


Dana DeLouis[_3_]

check and create folder for saveas
 
Just another idea...

s = "C:\Demo"
With CreateObject("Scripting.FileSystemObject")
If Not .FolderExists(s) Then .CreateFolder (s)
End With

--
Dana DeLouis
Win XP & Office 2003


"Bob Phillips" wrote in message
...
Hi Sunil,

One way

Sub Test()
Dim sFolder As String

sFolder = "C:\Mytest\New Dir"
If Not FolderExists(sFolder) Then
MkDir sFolder
End If

End Sub

'-----------------------------------------------------------------
Function FolderExists(Folder) As Boolean
'-----------------------------------------------------------------
Dim sFolder As String
On Error Resume Next
sFolder = Dir(Folder, vbDirectory)
If sFolder < "" Then
If (GetAttr(sFolder) And vbDirectory) = vbDirectory Then
FolderExists = True
End If
End If
End Function


--

HTH

RP

"Sunil" wrote in message
...
how do you chech if a folder exists and create one on A: drive is it is

not
there ?
Please help a newbie- Thanks :-}









All times are GMT +1. The time now is 07:33 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com