MkDir "C:\myTest\mySubTest"
You need to be careful that the upper directories exist fisrt, so probably
best to just try and create them
On Error Resume Next
MkDir "C:\myTest"
MkDir "C:\myTest\mySubTest"
MkDir "C:\myTest\mySubTest\mySubSubTest"
On Error GoTo 0
--
HTH
RP
(remove nothere from the email address if mailing direct)
"freekrill" wrote
in message ...
Hi,
Is it possible to include in a macro code to create and name a new
directory?
Cheers
Free
--
freekrill
------------------------------------------------------------------------
freekrill's Profile:
http://www.excelforum.com/member.php...fo&userid=7561
View this thread: http://www.excelforum.com/showthread...hreadid=389802