Hi, StargateFan.
As someone pointed out, you don't say WHY you need the other arrangement, or
how often your need occurs. But here is one solution that might fit:
In a Command Prompt window, use the Dir command with wildcards (and
quotation marks because of the spaces in the filenames):
dir "* - Copy*"
Add other switches as needed (type dir /? for a list of all switches and
parameters), such as:
C:>dir "e:\somefolder\* - Copy*"
Combine this with renaming commands, in a batch file perhaps, to change the
names. Example for a single filename:
ren "letter - Copy.txt" "Copy of letter.txt"
Or for a series of files, such as letter1, letter2, etc.:
ren "letter? - Copy.txt" "Copy of letter?.txt"
Since I never use Copy'n'Paste in this way to copy files, I don't know if
this would work. Please test it (on sample files, of course) and let us
know what happens.
RC
--
R. C. White, CPA
San Marcos, TX
[email protected]
Microsoft Windows MVP (2002-2010)
Windows Live Mail 2011 (Build 15.4.3538.0513) in Win7 Ultimate x64 SP1
"StargateFan" wrote in message
How can we get pre Win7 naming convention for copies. Prefer all
copies together under "Copy of ..." rather than with filename. Thx.