Create a folder from script
Posted: 06 Apr 2015 19:29
I am trying to find a xyplorer script command to create a folder. Seems to be an FAQ but i can't find any answer :-(
Forum for XYplorer Users and Developers
https://www.xyplorer.com/xyfc/
Code: Select all
"New"
$workspace = "D:\\Michael\\OneDrive\\workspace";
goto $workspace;
$p = $workspace . "\\" . "<date yyyymmddhhmm>" . "-" . rand(0);
new($p,"dir");
goto $p;