9
5
Is there an option or tool that will allow me to change the default naming convention for files copied into the same directory in Windows (XP) and above.
e.g. from: Copy of {name}.{ext} to: {name}.{ext}.copy
Currently:
original_file.php
Copy of original_file.php
Desired:
original_file.php
original_file.php.copy
This would make finding/working with duplicated files much easier (they auto-sort together) and the filetype (by extension) changes thus it can't accidentally "break" something (e.g. if it were a *.java file, upon compiling I would get errors)
Notepad++ Workaround: If you only deal with files containing text, as the PHP ending above implies, you could use Notepad++ with its autosave feature. See >Settings >Preferences >Tab "Backup/AutoCompletion" use "Simple backup" for only 1 backup file, use "Verbose backup" for a separate folder where files get timestamps. Also check out the plugin Autosave, this might be what you want. – Kai Noack – 2014-06-23T11:08:34.450