Move the selected files to a new folder

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
gialandra
Posts: 28
Joined: 03 Feb 2019 14:12

Move the selected files to a new folder

Post by gialandra »

Sometime I'm searching for this feature. Is it possible? Thanks

MBaas
Posts: 572
Joined: 15 Feb 2016 21:08

Re: Move the selected files to a new folder

Post by MBaas »

Ctrl+X: Cut selected files
Ctrl+N: Create new folder
Enter: go into that new folder
Ctrl+V: paste selected files.
[x] Done :)
______________________________________________
Happy user ;-)

highend
Posts: 13274
Joined: 06 Feb 2011 00:33

Re: Move the selected files to a new folder

Post by highend »

Code: Select all

    $items = <get SelectedItemsPathNames |>;
    if (!$names) { status "No item(s) selected, aborted!", "8B4513", "stop"; end true; }
    $folderName = input("Enter folder name...", , "New folder");
    if (!$folderName) { status "No valid folder name, aborted!", "8B4513", "stop"; end true; }
    moveto "<curpath>\$folderName", $items, , 2, 2;
One of my scripts helped you out? Please donate via Paypal

gialandra
Posts: 28
Joined: 03 Feb 2019 14:12

Re: Move the selected files to a new folder

Post by gialandra »

Thank you highend. I just have to find ways to make the most of it. Can I command it directly from the right-click menu?

admin
Site Admin
Posts: 60357
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Move the selected files to a new folder

Post by admin »

Isn't that the same as
1) File | Duplicate | Move Here to New Subfolder... (Ctrl+Shift+X)
2) the built-in right-drag-drop menu:
Attachments
MoveHereToNewSubfolder.png
MoveHereToNewSubfolder.png (81.58 KiB) Viewed 1169 times

gialandra
Posts: 28
Joined: 03 Feb 2019 14:12

Re: Move the selected files to a new folder

Post by gialandra »

CTRL+SHIFT+X... Thanks to everybody!

DixieCup48
Posts: 107
Joined: 30 Jan 2018 14:58

Re: Move the selected files to a new folder

Post by DixieCup48 »

CTRL+SHIFT+X...
A handy nugget of information to have :!:

In fact made it into a CTB.

Post Reply