Posted: 20th Jun 2007 2:01
The command Make Directory() refuses to work. The following are various simple commands that do not work.

+ Code Snippet
Make Directory "data\object\"
Make Directory "C:\data\object\"
Make Directory Get Dir$() + "data\object\"
Posted: 20th Jun 2007 2:20
You can only make a directory in the current working directory, use this instead:

+ Code Snippet
Make Directory "data"
cd "data"
make directory "object"


Also, you cannot make multiple directories with a single command for the same reason.
Posted: 20th Jun 2007 2:25
Worked perfectly.
Posted: 20th Jun 2007 2:40
Good. I had the same problem when I started using it; its too bad it won't work the way you had it in the first place! (I tried that, too and it was frustrating.)
Cheers.