Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

using SHELL to create a folder 2

Status
Not open for further replies.

smuthcrmnl777

Technical User
Jan 16, 2006
104
US
I need to have access create a folder on the user's root directory and then copy some files to it. I tried ...

Shell "md c:\test"

I could not create the file. Could someone guide me on this?
 
shell.run...

although it might be safer to go through the fileSystemObject if you're doing lots of things...

--------------------
Procrastinate Now!
 
Or there's the VB "MkDir" command as in
Code:
MkDir "C:\test"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top