Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
remove spaces in multiple filenames
Name: gcue Date: November 19, 2006 at 12:00:18 Pacific OS: DOS CPU/Ram: 1G Product: custom
Comment:
Hello.
I would to rename
blah1_car_test.txt blah2_car_test.txt TO blah1_test.txt blah2_test.txt
also a seperate script that replaces spaces in a filename with underscores
"blah1 test.txt" "blah2 test.txt" with blah1_test.txt blah2_test.txt
this is part of a script thats already doing other stuff so i dont want to use a 3rd party utility.
Summary: ALLTRIM() only removes the spaces on the ends of a string. To remove spaces in the middle, you'll need to write your own. this is a C version: int i,j; for( i = 0; string[ i ]; i++ ) { if( string[ i ...
Summary: Hello, I have a lot of files which countain %20 in their names. So I would like to remove %20. I have a Batch Dos script which remove spaces in filenames. Could you help me to adapt it? I would be ver...
Summary: Hi all, N.B. This will only work, or has been tested in Dos 7.1 so it won't work in an NT Environment! Heres an intereting way of removing ALL(blank lines) CR's, LF's & Spaces in a batch file with a "...