Difference cm_RenMov and cm_MoveOnly ?

English support forum

Moderators: white, Hacker, petermad, Stefan2

Post Reply
oko
Senior Member
Senior Member
Posts: 201
Joined: 2007-05-03, 16:22 UTC

Difference cm_RenMov and cm_MoveOnly ?

Post by *oko »

1/
In Command explorer there are cm_RenMov and cm_MoveOnly. Is there any difference or is it the same operation?

2/
I would like to have one button for moving all files from C:\dir1\ to C:\dir2\ without need to set the dir1 and dir2 in panels. How to write this command for button using TC internal command(s)?
User avatar
ghisler(Author)
Site Admin
Site Admin
Posts: 48093
Joined: 2003-02-04, 09:46 UTC
Location: Switzerland
Contact:

Re: cm_RenMov and cm_MoveOnly

Post by *ghisler(Author) »

1:
cm_RenMov without parameters reacts to modifier keys, e.g. Shift+cm_RenMov starts in place rename.
cm_MoveOnly ignores modifier keys, use cm_RenameOnly to open in place rename instead.

2:
Search for cm_RenMov in the help, the parameters are explained in "Dialog box: Choose commands".
Author of Total Commander
https://www.ghisler.com
sa16
Senior Member
Senior Member
Posts: 217
Joined: 2021-09-10, 07:15 UTC

Re: Difference cm_RenMov and cm_MoveOnly ?

Post by *sa16 »

2oko
I would like to have one button for moving all files from C:\dir1\ to C:\dir2\ without need to set the dir1 and dir2 in panels. How to write this command for button using TC internal command(s)?
For example, like this:

Code: Select all

cd "%TEMP%",cd "C:\Dir1",cm_SelectAllBoth,cm_Renmov /G0T="C:\Dir2\",cm_GoToPreviousDir,cm_GoToPreviousDir
P.S.
Make sure the C:\Dir1 directory exists before running the chain of commands!
Post Reply