vbs可以用下面的
function gethms()'获取当前时间
v=hour(now())
s=""
if v<10 then
s=s&"0"&v
else
s=s&"-"&v
end if
v=minute(now())
if v<10 then
s=s&"-0"&v
else
s=s&"-"&v
end if
v=second(now())
if v<10 then
s=s&"-0"&v
else
s=s&"-"&v
end if
gethms=s
end function
sourcepath="d:\test\"'xlsx文件所在目录
targetpath="d:\test1\"'要裁剪到的目标目录
set fso=createobject("scripting.filesystemobject")
set dict=createobject("scripting.dictionary")
''''''''''''读取目标文件夹下的xlsx文件放入字典中
set folder=fso.getfolder(sourcepath)
set files=folder.files
for each file in files
dict.Add file.path,1
next
set files=nothing
set folder=nothing
while dict.Count>0'字典有文件
'获取当前时间
s=gethms()&"."
for each item in dict
if instr(item,s)<>0 then'文件包含当前时间,执行移动
filename=replace(lcase(item),sourcepath,"")
fso.MoveFile item,targetpath&filename
dict.Remove(item)'从字典中删除此项
exit for
end if
next
Wscript.sleep(1000)'500ms执行一次
wend
set fso=nothing
set dict=nothing
msgbox "excel文件全部移动完毕"