
August 15th, 2000, 01:30 PM
|
|
Junior Member
|
|
Join Date: Aug 2000
Location: Frederick,MD USA
Posts: 6
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
if you're using linux in any form, you will need to do the following:
system("mkdir path");
Or, simply print the command to STDOUT:
print `mkdir new_path`;
Be sure to enclose your command in BACK quotes.
|