Re: how to auto stuff a folder with Stuffit Lite
Re: how to auto stuff a folder with Stuffit Lite
- Subject: Re: how to auto stuff a folder with Stuffit Lite
- From: Richard 23 <email@hidden>
- Date: Fri, 19 Jan 2001 00:38:04 -0800
>
-- for StuffIt Deluxe 6
>
>
tell application "StuffIt Deluxe"
>
activate
>
open file "pb0:Desktop Folder:a.sit"
>
stuff {alias "pb0:Desktop Folder:EagleRiver:"} into archive "a.sit"
>
compression level fast
>
close window "a.sit"
>
end tell
I stil think that's like clubbing someone to death with a loaded uzi.
I'd just use DropStuff for basic archiving.
-- --------------------------------------------------------------------
-- this may ask you to locate the Application, so use alternate method
-- --------------------------------------------------------------------
tell app "Finder" to open aliasList using app "DropStuff"
set result's name to "myArchive.sit"
-- --------------------------------------------------------------------
-- this finds and processes the target with DropStuff wherever it may
-- be regardless of its name or version.
-- --------------------------------------------------------------------
tell application "Finder" to open aliasList using application file id
"DStf"
set result's name to "myArchive.sit"
R23