Link to home
Start Free TrialLog in
Avatar of smaill
smaill

asked on

Create Directories from List

I am trying to create directories from a list in excel

In vba I need the syntax to check if a directory exists & also the syntax to create a directory

Looking forward
ASKER CERTIFIED SOLUTION
Avatar of wolfking
wolfking

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wolfking
wolfking

MkDir Statement Example
This example uses the MkDir statement to create a directory or folder. If the drive is not specified, the new directory or folder is created on the current drive.

MkDir "MYDIR"    ' Make new directory or folder.

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial