I have never used applescript before and I'm trying to find out how to zip a folder on the desktop, that's all and it's giving me a hard time
相关问题
- NIO2: how to generically map a URI to a Path?
- How to transfer the shared prefs from Instant app
- JXA Move a message to a different folder/mailbox
- PHP Fatal error: Uncaught Error: Class 'ZipArc
- How to tell if a menu item is 'checked'?
相关文章
- Merge multiple zip files into a single zip file in
- How to extract zip file using dotnet framework 4.0
- Add files to ZIP without paths, using SharpZipLib
- Check if display is sleeping in Applescript
- Upload a ZIP file and UNZIP ftp folder via PHP
- Scriptability (AppleScript) in a Mac Carbon applic
- tell application - string vs. string?
- How do I save each sheet in an Excel 2010 workbook
If you're happy to use Applescript to just invoke sh, you can use
(The
-f
option is "freshen", which will stopunzip
from asking if you want to overwrite files. To always overwrite, use-o
.)