Jeffel Posted October 26, 2004 Posted October 26, 2004 Hi All ! I would like to read a file in *.zip ! How can I proceed plz ? The *.zip is : Simdata.zip In this zip i would like to read the file jefel.dat in the path "sim\acdata\jeffel.dat" help me ! Thanx !
this-is-me Posted October 26, 2004 Posted October 26, 2004 You will have to use a command line unzipper. Unzip support is not and will not be included in autoit. Who else would I be?
Matt @ MPCS Posted October 26, 2004 Posted October 26, 2004 I personally use 7zip for command line extraction. This is a open source, lightweight, multiple format unzipper. *** Matt @ MPCS
Guest Py7|-|[]/\/ Posted October 26, 2004 Posted October 26, 2004 I do it the old skool way, with WinRAR.
normeus Posted October 27, 2004 Posted October 27, 2004 home page to 7-ziphttp://www.7-zip.org/download it from:http://prdownloads.sourceforge.net/sevenzip/7z313.exethis should work:RunWait("C:\progra~1\7-zip\7z x c:\simdata.zip -oc:\temp sim\acdata\jeffel.dat")C:\progra~1\7-zip\7z = your program's locationx = switch to extract and keep folder structurec:\simdata.zip = zip file to extract from-oc:\temp =output directory (it will be created if not found)sim\acdata\jeffel.dat = file to be selected. The folder structure will be copiedthis means your file will be in c:\temp\sim\acdata\jeffel.dat when done http://www.autoitscript.com/autoit3/scite/...iTe4AutoIt3.exe
Jeffel Posted October 27, 2004 Author Posted October 27, 2004 Thanx all for yours reply.. i'am going to test your script normeus ! Thanx a lot all of you !
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now