有没有人知道确定文件副本何时在VBScript中完成的方法?我正在使用以下内容进行复制:
set sa = CreateObject("Shell.Application")
set zip = sa.NameSpace(saveFile)
set Fol = sa.NameSpace(folderToZip)
zip.copyHere (Fol.items)
答案 0 :(得分:6)
Do Until zip.Items.Count = Fol.Items.Count
WScript.Sleep 300
Loop
当循环结束时,副本完成。
但如果您只想复制而不是压缩,FSO或WMI会更好。
如果你要压缩并希望它们在文件中,你必须自己创建zip文件,首先使用正确的标题。否则你只能获得压缩文件/文件夹IIRC。像这样:
Set FSO = CreateObject( "Scripting.FileSystemObject" )
Set File = FSO.OpenTextFile( saveFile, 2, True )
File.Write "PK" & Chr(5) & Chr(6) & String( 18, Chr(0) )
File.Close
Set File = Nothing
Set FSO = Nothing
OpenTextFile中的2是ForWriting。
答案 1 :(得分:2)
使用FileSystemObject
上的复制方法可能会更好。我用它来复制,这是一个阻塞电话。
答案 2 :(得分:0)
Const FOF_CREATEPROGRESSDLG = &H0&
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Set fso = CreateObject("Scripting.FileSystemObject")
strSource = " " ' Source folder path of log files
strTarget = " .zip" ' backup path where file will be created
AddFilesToZip strSource,strTarget
Function AddFilesToZip (strSource,strTarget)
Set r=fso.GetFolder(strSource)
set file = fso.opentextfile(strTarget,ForWriting,true)
file.write "PK" & chr(5) & chr(6) & string(18,chr(0))
file.Close
Set shl = CreateObject("Shell.Application")
i = 0
For each f in r.Files
If fso.GetExtensionName(f) = "log" Or fso.GetExtensionName(f) = "Log" Or fso.GetExtensionName(f) = "LOG" Then
shl.namespace(strTarget).copyhere(f.Path)', FOF_CREATEPROGRESSDLG
Do until shl.namespace(strTarget).items.count = i
wscript.sleep 300
Loop
End If
i = i + 1
Next
set shl = Nothing
End Function