I have downloaded 25 files with the following in the file name: ".avi.001" - ".avi.025".
I removed the ".001" by renaming the file, resulting in ".avi". The file works. But when I do the same to the other files, they do not work. What should I do?
Joiner
Moderator: Thanas
- Sharpshooter
- Jedi Master
- Posts: 1081
- Joined: 2004-08-31 10:59pm
Or you could do it oldschool in a command window with
COPY /B something.avi.0?? something.avi
? is a wildcard that represents any other symbol and as such should be able to replace the whole range when done like this. Or you could be sure you got it right by doing
COPY /B something.avi.001+something.avi.002+(blabla, you get the picture) something.avi[/code]
COPY /B something.avi.0?? something.avi
? is a wildcard that represents any other symbol and as such should be able to replace the whole range when done like this. Or you could be sure you got it right by doing
COPY /B something.avi.001+something.avi.002+(blabla, you get the picture) something.avi[/code]