|
-
Apr 5th, 2009, 04:28 AM
#1
Thread Starter
New Member
MkDir, maybe an old one
Hi,
I need to create a multilevel path like
"C:\Level1\Level2\Level3"
Public sub CreatePath()
MkDir "C:\level1\level2\level3"
End Sub
leads to an error 76 "path not found".
Public Sub createdir()
MkDir "C:\level11"
MkDir "C:\level11\level12"
MkDir "C:\level11\level12\level13"
End Sub
works fine but isn't very practical when the path has a greater changing numbers of levels.
Who knows how I can solve this problem on a simple way, suitable for a greater changing number of levels ??
jodo1955
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|