I'm pretty sure CDs are alphabetical.
1.
--
From Help
-------------
To rename a series of files
1.. Open My Documents.
If the series of files you want to rename is not located in My Documents or its subfolders, use Search to find it. To open Search, click Start, and then click Search.
2.. Select the files you want to rename.
3.. On the File menu, click Rename.
4.. Type the new name, and then press ENTER.
All of the files in the series will be named in sequence using the new name you type. For example, if you type Birthday, the other files in the series will be named Birthday (1), Birthday (2), and so on.
Notes
a.. To open My Documents, click Start, and then click My Documents.
b.. To select consecutive files or folders, click the first item, press and hold down SHIFT, and then click the last item. To select nonconsecutive files or folders, press and hold down CTRL, and then click each item.
c.. To specify the starting number for the series, type the starting number in parenthesis after the new file name. The files in the series will be numbered in sequence starting with the number you type. For example, if you type Birthday (10), the other files will be named Birthday (11), Birthday (12), and so on.
Related Topics
2.
--
Where are the files. I can tell you how to add the existing date into the file name quickly using a command prompt.
for %A in (*.jpeg) do ren "%A" "%~tnxA"
which runs this command on each file (5:23 is when I created the test file) in a folder
ren "filename.jpeg" "19/12/2005 05:23 AM filename.jpeg"
Now the above won't work where I live as / is a path or switch character and : is a drive character. So I would have to change my regional settings for date/time (use dash [-] and period [.] as they are legal characters) before running the command.
--
--------------------------------------------------------------------------------------------------
Goodbye Web Diary
http://margokingston.typepad.com/harry_version_2/2005/12/thank_you_and_g.html#comments
=================================================
karenr said:
Thanks, David. I tried that and it worked to the point where I can use it.
I just have to move the ones within that date when I put them into Nero to
burn. Thanks again.
PS - thanks for not being a smartass like lots of people on these forums