Jump to content

Search the Community

Showing results for tags 'zip compression'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. I have been using _Zip.au3 to put files in a zip container. I discovered a problem recently where the AutoIt script executable I created wasn't exiting after the zipping process was completed. The zip file appears to be created correctly but the executable just doesn't exit. Adding an Exit at the end of the script did nothing and there doesn't appear to be any errors except that the script appears to be paused (indicating a problem before the last line of code). This problem appears to be fixed by adding a Sleep(500) line after the _ZipCreate like this: $Zip = _Zip_Create($myzip) Sleep(500) _Zip_AddItem($Zip,$myfolder) I have no idea why this worked but perhaps if someone can explain why it works I will live with this workaround. In any case, after reading all the comments in the forum (see thread started by torels with title "ZIP.au3 UDF in pure AutoIt") about _Zip.au3 I am wondering if I should be using it at all. It might be more desirable to use a command line from an AutoIt script to do this. Also, I am hesitant to use _Zip.au3 because it doesn't appear to be distributed with AutoIt (even though it has been around since 2008), it may have been copied from someone else, and it doesn't appear to have been updated since 2008. Please recommend one of these options: 1) Continue using _Zip.au3 2) Use a different UDF for zip compression 3) Use a command line that just uses the zip features built into Windows. Before I consider this, I'd have to make sure the same command works in all current versions of Windows. Also, examples would be helpful (I saw an example on the thread listed above but can't find it now). 4) Other: it would be nice to have an option that can password protect the zip container. Does _Zip.au3 have it? I think it was recommended but it doesn't show up in _Zip.au3 feature list. Thanks in advance for your recommendations.
×
×
  • Create New...