所以我需要一些帮助,我仍然是vbscript的新手。我有一个包含100多个不同类型文件的目录,但是只想将具有正确时间戳的文件移动到另一个目录。
文件的命名约定如下:stuff-11012013-042567.txt,我想只移动匹配时间戳的文件。
我已经按照以下方式启动了我的脚本但是我仍然坚持如何找到并匹配文件名中的特定字符串,并且我是否必须将匹配结果设置为变量才能一次性移动所有文件?
'Create file object system and declare to variable
Set objFSO=CreateObject("Scripting.FileSystemObject")
'Get source and destination folders, set source and destination folder paths to variables
Set sfldr=objFSO.getFolder("in")
Set dfldr=objFSO.getFolder("out")
'Check to see if source folder Exists
If objFSO.FolderExists("in\") Then
'Check to see if there are existing files on destination folder
If dFldr.files.count = 0 Then
If sfldr.files.count < 6 then
msgbox("Need more files!")
ElseIf sfldr.files.count > 6 then
msgbox("Too many files, please double check for consistency")
Else
'Enter loop to move all files from source directory to destination directory
for each file in sfldr.files
objFSO.MoveFile "in\*", "out"
Next
End If
Else
msgbox("Files already Exists on Destination Folder. Please Check files!")
End If
Else
msgbox("Source path does not exist")
End If
答案 0 :(得分:1)
在For
循环中,您需要检查每个文件的名称并决定如何处理它。
如果时间戳始终位于文件名中的相同位置,则可以使用Mid()
功能。如果位置不同,您可以使用Instr()
。