Multi Commander Support Forum

Multi Commander => Support and Feedback => Topic started by: karthik on September 28, 2012, 08:08:32

Title: make a copy of a file
Post by: karthik on September 28, 2012, 08:08:32
Is there a shortcut to make a copy of the file in the same directory. An equivalent of Ctrl+C followed by Ctrl+V (in windows explorer which creates a copy of the file in the same directory with a tag "Copy" added). Thanks.
Title: Re: make a copy of a file
Post by: Mathias (Author) on September 28, 2012, 08:12:33
Menu > File > Copy (Quick)
or Shift +F5 (if running commder styled key setup)

Title: Re: make a copy of a file
Post by: karthik on September 28, 2012, 08:15:16
But that changes the extension to .bak. I would like to keep the extension same and add a tag to the filename instead.
Title: Re: make a copy of a file
Post by: Mathias (Author) on September 28, 2012, 09:39:50
It will only be .bak if you press enter. you can change it. But if you want to automate it you can do it with script.

The easiest script would be to call Ctrl+C followed by Ctrl+V

( The ID command is found in Keyboard customization dialog )

Command Type : MultiScript
Code: [Select]
// Run Edit->Copy
MC.RunCmd ID=Core.1311

// Run Edit->Paste
MC.RunCmd ID=Core.1312