gpt4 book ai didi

applescript - 使用 AppleScript 更改文件夹图标?

转载 作者:行者123 更新时间:2023-12-04 02:39:40 25 4
gpt4 key购买 nike

我创建了一个对我很有帮助的 AppleScript,我希望是否可以自动更改文件夹图标。

这个脚本很简单,它创建一个文件夹,然后在同一个文件夹中创建一个空的文本文件。

这是脚本:

tell application "Finder"
set newfolder to make new folder with properties {name:My Folder}
make new file at newfolder with properties {name:"read_me.txt"}
end tell

是否可以自动更改文件夹图标?

(当然,我在与脚本相同的文件夹中拥有我的自定义文件夹图标 (.icns))

最佳答案

这是一个使用此包中的命令行实用程序“seticon”的解决方案:https://github.com/vasi/osxutils

假设您的脚本、icns 文件和新文件夹都在同一目录中。

tell application "Finder"
set parent_path to ((the container of the (path to me)) as text)
set target_folder_path to quoted form of POSIX path of (parent_path & "my folder")
set icon_path to quoted form of POSIX path of (parent_path & "icon.icns")
do shell script "/usr/local/bin/seticon -d " & icon_path & " " & target_folder_path
end tell

关于applescript - 使用 AppleScript 更改文件夹图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20172959/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com