Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am doing a nightly backup of all files modified in the last day, using PowerShell.

The goal is to create an uncompressed zip (or any other format) that will group everything in the backup folder into one file, using PowerShell.

The following code works great for compression but it is far too slow:

function Add-Zip
{
    param([string]$zipfilename)

    if(-not (test-path($zipfilename)))
    {
        set-content $zipfilename ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18)) 
        (dir $zipfilename).IsReadOnly = $false  
    }

    $shellApplication = new-object -com shell.application
    $zipPackage = $shellApplication.NameSpace($zipfilename)

    foreach($file in $input) 
    { 
        $zipPackage.CopyHere($file.FullName)
        Start-sleep -milliseconds 1000
        #500 milliseconds was too short.... 
    }
}

Any ideas?

Thanks!

share|improve this question
You chose a hard way. Why don't you use any of available command line tools? – stej Mar 22 '11 at 4:09
The powershell does more than what I showed above. It was used to only get the files modified in the last day. – nosirrahcd Mar 22 '11 at 19:53

2 Answers

up vote 5 down vote accepted

I would recomend using powershell in conjunction with 7-Zip Command line. 7-Zip has a command line option that allows for No Compression.

-mx0
share|improve this answer

The PowerShell Community Extensions has a Write-Tar cmdlet that might be of use here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.