Re: Access to Zip
Re: Access to Zip
- Subject: Re: Access to Zip
- From: Adam Bell <email@hidden>
- Date: Sun, 25 Jun 2006 13:06:12 -0300
- Comment:
This version works perfectly for me, Kai.
Adam
At 3:27 PM +0100 6/24/06, kai wrote:
So let's try that again:
------------------------
to extract_and_delete(z)
try
set p to quoted form of z's POSIX path
set n to paragraph 2 of (do shell script "zipinfo " & p)
set n to n's text ((offset of ":" in n) + 4) thru -(1
+ ((n ends with "/") as integer))
set d to (do shell script "dirname " & p) & "/"
set f to d & n as POSIX file
tell application "Finder" to if f exists then error
"The " & item f's class & " \"" & n & "\" already exists."
do shell script "ditto -x -k " & p & space & quoted form of d
do shell script "rm " & p (* delete the zip file
without trashing *)
on error e
display dialog e buttons {"Cancel"} default button 1
end try
end extract_and_delete
extract_and_delete(choose file of type "com.pkware.zip-archive"
without invisibles)
------------------------
(For a pre-Tiger OS, the '-rsrc' option should be included.)
---
kai
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden