如何使用 AppleScript 检查并删除 iPhoto 相册中的照片
我想编写一个 AppleScript 将照片导入相册。 如果给定相册中已存在具有相同文件名的照片,我想先删除现有的照片,然后继续导入。 我尝试过:
if album "MyAlbum" contains "pic1.jpg" then
remove "pic1.jpg" from album "MyAlbum"
end if
但这不能编译。 (我知道如何进行实际的导入部分。)
I want to write an AppleScript to import a photo into an album. If a photo with the same file-name already exists in the given album, I want to remove the existing one first, then proceed with the import. I tried:
if album "MyAlbum" contains "pic1.jpg" then
remove "pic1.jpg" from album "MyAlbum"
end if
but that doesn't compile. (I know how to do the actual import part.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明答案其实很简单:
It turns out the answer is really simple: