如何使用 AppleScript 检查并删除 iPhoto 相册中的照片

发布于 2024-07-23 11:16:14 字数 240 浏览 7 评论 0原文

我想编写一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流殇 2024-07-30 11:16:14

事实证明答案其实很简单:

remove (every photo of album "MyAlbum" whose image filename is "pic1.jpg")

It turns out the answer is really simple:

remove (every photo of album "MyAlbum" whose image filename is "pic1.jpg")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文