Description
Have a bunch of files that are similar format, but not quite similar enough? I have that problem with mp3s. Over the time as I have ripped my CD's onto my computer, some of them are in a different format from others. For example, "Author - Title - Num.mp3" VS "Title - Num - Author.mp3". I made this program to look through a directory for files that match a regular expression. You can then use the regular expression as input to a replacement pattern that will let you change the names of the files all at once. It is much more simple than "F2, Type Name, Enter, F2, Type Name, Enter, ETC."
Technology- C#/.NET 2.0 Features- Specify a regular expression pattern for the names of files/directory to search for, ie: "MyFile_(.+?)_Small.jpg".
- Returned regex sections can be used in new values, ie: {1} = first returned regex section, {2} = second returned regex section, etc.
- Preview the changes before they are finalized.
|