gpt4 book ai didi

file - 如何使用 AppleScript 在桌面上的文件夹中创建新文件?

转载 作者:行者123 更新时间:2023-12-04 00:34:52 26 4
gpt4 key购买 nike

我正在尝试使用 AppleScript 在桌面上的文件夹中创建一个文件。

set blankPage to (((path to desktop) as string) & "text.txt")

我知道 path to desktop指向桌面,但是如何让它指向桌面上的文件夹 ex. (“文本文件”)?

最佳答案

如果该文件夹存在,您可以使用 Finder 获取该文件夹的路径:

tell application "Finder"
set blankPage to (folder "Text files" of (path to desktop) as text) & ¬
"text.txt" as alias
end tell

要制作一个空文本文件,您可以像这样使用 Finder:
tell application "Finder"
set blankPage to make new file at folder "Text files" of (path to desktop) ¬
with properties {name:"text.txt"}
end tell

使用 shell 是一种更快的方法:
do shell script "> $HOME'/Desktop/Text files/text.txt'"

关于file - 如何使用 AppleScript 在桌面上的文件夹中创建新文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25760674/

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