Using Excel to create directories?

kyrgan

Active Member
Joined
Mar 23, 2006
Messages
309
Hello all,

I have an issue where I need to save a file to a certain directory.

What I would like to do, using VBA is to check and see if the dir exists, and if it does not, go ahead and create it.

In this same vein, how would one go about deleting a dir (empty or full)

Thanks!
K.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Found this previous post from Vog.

Thanks for the point in the right direction John!

Code:
Function DirExists(sSDirectory As String) As Boolean
If Dir(sSDirectory, vbDirectory) <> "" Then DirExists = True
End Function

Sub test()
If Not DirExists(Range("A3").Value) Then MkDir Range("A3").Value
MkDir Range("A3").Value & "\" & Range("A2").Value
ActiveWorkbook.SaveAs Filename:=Range("A3").Value & "\" & Range("A2").Value & "\" & Range("A1").Value
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,477
Messages
6,125,038
Members
449,205
Latest member
Eggy66

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top