Note: usually i am on an file for which i want to make the same folder structue in an other folder.admin wrote: copy the folder to the clipboard (select folder, then Ctrl+C),
then goto the target
and do menu Edit / Paste Special / Paste Folder Structure.
So i want to ask to let this feature works for <curitem(s)> too, taking just the parent folder as argument.
2. wish:
Code: Select all
new()
Creates a new file or folder.
Syntax
new(name, [type=file|dir], [source], [rename=|r])
name [Required] Name of the new item to be created.
If no path is passed, the current path is taken as default. If no full path is passed
Then only the last folder from an path string is created:
Code: Select all
new "sub folder\fld", dir; //only "fld" is created here.Code: Select all
new "<curpath>\sub folder\fld", dir; So i think from my point of view this could be improved.
And as second improvement i suggest to auto remove the colon if any.
Right now i use:
Code: Select all
$path= "<curpath>";
$path= replace($path, ":");
$item= "<curname>";
focus "PI";
new "<curpath>\$path", dir;
//copy file code goes here
XYplorer Beta Club