使用 Automator 在 Mac 上的文件夹中创建新文本文件
Automator 是一款功能强大的应用程序,可让您编写脚本并实现自动化。在这种情况下,我们将创建一个 Automator 快速操作,它可以从 Finder 中的任何位置运行,以在当前文件夹位置创建一个新的文本文件。因此,只需稍加设置,您就可以随时随地轻松访问创建新文本文件的能力。
-
- 在 Mac 上打开 Automator 应用程序,然后选择创建一个新的“快速操作”
-
- 使用搜索功能并搜索“AppleScript”,然后双击或将运行 AppleScript 操作拖放到右侧的工作流程中,然后添加以下 AppleScript 文本:
tell application "Finder" to make new file at (the target of the front window) as alias
-
- 使用明显的名称保存快速操作,例如“创建新文本文件”
- 现在转到 Mac 上的 Finder 并导航到要在其中创建新文本文件的文件夹或目录,然后下拉“Finder”菜单并转到“服务”,然后选择“创建新文本文件”
-
- 将创建一个新的空白文本文件,名为“无标题”
您可以在 Finder 中的任何位置使用此快速操作来立即生成新的文本文件。
这可能是最接近 Windows 右键单击“创建新文本文件”功能的 Mac 操作。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun117670.html