Domanda

Qualcuno conosce un metodo per determinare quando una copia di file viene completata in VBScript? Sto usando il seguente per copiare:

set sa = CreateObject("Shell.Application")  
set zip = sa.NameSpace(saveFile)  
set Fol = sa.NameSpace(folderToZip)  
zip.copyHere (Fol.items)
È stato utile?

Soluzione

Do Until zip.Items.Count = Fol.Items.Count
    WScript.Sleep 300
Loop

Al termine del ciclo, la copia è terminata.

Ma se vuoi solo copiare e non comprimere, FSO o WMI è meglio.

Se stai zippando e li vuoi in un file devi creare tu stesso il file zip, prima con l'intestazione giusta. Altrimenti ottieni solo file / cartelle compressi IIRC. Qualcosa del genere:

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

Il 2 in OpenTextFile è ForWriting.

Altri suggerimenti

Potresti avere più fortuna usando il metodo Copia su un FileSystemObject . L'ho usato per copiare ed è una chiamata bloccante.

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
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top