打比方。一个文件夹里的文件名太多了。
我整理了一下,但是发现大小写差次不齐,
所以。我想要一个BAT 批处理。谢谢
[ Last edited by HAT on 2008-11-19 at 12:33 ]
我整理了一下,但是发现大小写差次不齐,
所以。我想要一个BAT 批处理。谢谢
[ Last edited by HAT on 2008-11-19 at 12:33 ]
偶其实很喜欢批处理
联盟域名:www.cn-dos.net 论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!
chgcase.exe
Filename & directory case convertion.
http://cdebrock.free.fr/
chgcase.exe directory1 directory* file1 file*
-u: change to uppercase
-l: change to lowercase
-c: capitalize (first letter only: my file.ext -> My file.ext)
-C: capitalize (all words: my file.ext -> My File.ext)
-d: process directories only
-f: process files only
-v: verbose mode
Wildcards are ok.
Filters are applied in this order: u l c C.
-d and -f are default (process files AND directories)
ex.:
chgcase -v -l -c -f *
Lowercase then capitalize all files (not directories).
chgcase -v -u -c -d *
Uppercase then capitalize all directories (not files).