会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
感恩的心
猝然临之而不惊,无故加之而不怒
VBS 版批量重命名
Code
1
rem 读取配置文件
2
Dim config
3
config
=
"
conf.txt
"
4
set
fso
=
createobject(
"
scripting.filesystemobject
"
)
5
set
a
=
createobject(
"
scripting.dictionary
"
)
6
set
file
=
fso.opentextfile(config)
7
do
while
file.atendofstream
<>
true
8
m
=
m
+
1
9
a.add m,file.readline
10
src
=
a(m)
11
RenameSubPage src
12
loop
13
file.close
14
Set fso
=
Nothing
15
msgbox
"
操作已完成
"
,
4096
,
"
文件重命名
"
16
17
Sub RenameSubPage(strURL)
18
Dim path
19
For i
=
19
To
100
20
path
=
Replace(strURL ,
"
.html
"
,
"
_
"
&
i
&
"
.html
"
)
21
If fso.fileexists(path)
=
True Then
22
target
=
path
&
"
.tmp
"
23
fso.movefile path , target
24
Else
25
'
do nothing
26
End If
27
Next
28
End Sub
29
注释: conf.txt 文件内容如下:
D:\a\b\c.html
D:\d\e\f.html
posted on
2009-01-15 14:34
感恩的心
阅读(
1414
) 评论(
1
)
编辑
收藏
举报
刷新页面
返回顶部
导航
博客园
首页
新随笔
联系
订阅
管理
公告