This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / 碰到一个好象很简单的问题,卡住了 --- 如何用 Dos Command 把一个 folder 中的所有 *.txt 文件 ren 成 1.txt, 2.txt, 3.txt.... ?? 试过 For,好像不行。
-xmlhttprequest(longhorn);
2004-11-16
(#1983510@0)
-
终于搞定了number.bat:
@echo off
set _counter=0
for %%a in (%1) do call _rencount.bat %%a
call _cleanup.bat
_rencount.bat:
@echo off
for %%a in (%1) do ren %%a %_counter%%%~xa
set /a _counter+=1
-xmlhttprequest(longhorn);
2004-11-16
{198}
(#1983537@0)
-
感叹中.........
-ange0791(human);
2004-11-16
(#1984026@0)