Mac添加新建文本文档

2023-10-24 09:33
文章标签 mac 新建 文本文档

本文主要是介绍Mac添加新建文本文档,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

功能:默认使用TextEdit(自带文本文档程序)在当前目录建立新文本文档。

过程:

打开automator

选择----服务

选取----实用工具

拖动----运行apple script 到右边的面板中

然后把面板内容替换如下:

[javascript]  view plain copy
  1. (*  
  2. --Author: Libok Zhou (libk.8800.org, libkhorse@gmail.com). Feel free to contact me if you have questions about this script  
  3. --Usage: This script is used for Automator to add an "new text file" to the context menu,   
  4.          when you want to create a new text file in current folder of Finder  
  5. *)  
  6. tell application "Finder"  
  7.     try  
  8.         set currentFolder to (folder of the front window)  
  9.         set currentPath to (POSIX path of (target of the front window as alias))  
  10.         set libkIsDeskTop to false  
  11.     on error  
  12.         set currentFolder to desktop  
  13.         set currentPath to (POSIX path of (desktop as alias))  
  14.         set libkIsDeskTop to true  
  15.     end try  
  16.     (*  
  17.     set currentPath to (POSIX path of (target of the front window as alias))  
  18.     set currentFolder to (folder of the front window)  
  19.     *)  
  20.       
  21.     set txtName to text returned of (display dialog "Please enter the text name, " default answer "untitled.txt")  
  22.       
  23.     --if txtName is empty using "untitled.txt" as default  
  24.     --no trailing extension, suffix with ".txt"  
  25.     --have extension, don't touch it.  
  26.     if length of txtName = 0 then  
  27.         set ext to "txt"  
  28.         set baseName to "untitled"  
  29.         set txtName to "untitled.txt"  
  30.     else  
  31.         set prevTID to text item delimiters of AppleScript  
  32.         set text item delimiters of AppleScript to "."  
  33.         set libkNameParts to text items of txtName  
  34.         set text item delimiters of AppleScript to prevTID  
  35.           
  36.         set len to length of libkNameParts  
  37.         if len = 1 then  
  38.             set ext to "txt"  
  39.             set baseName to txtName  
  40.             set txtName to baseName & "." & ext  
  41.         else if len = 2 then  
  42.             set ext to last text item of libkNameParts  
  43.             set baseName to item 1 of libkNameParts as text  
  44.         else  
  45.             set ext to last text item of libkNameParts  
  46.             set baseName to text 1 thru -((length of ext) + 1) of txtName  
  47.         end if  
  48.     end if  
  49.       
  50.       
  51.       
  52.     -- if the file name already exists in current folder, attach the "_n" to the filename  
  53.     set n to 1  
  54.     considering case  
  55.         tell (get name of currentFolder's files) to repeat while txtName is in it  
  56.             set txtName to baseName & "_" & n & "." & ext  
  57.             set n to n + 1  
  58.         end repeat  
  59.     end considering  
  60.       
  61.       
  62.     set newTxt to currentPath & txtName  
  63.     do shell script "touch " & newTxt  
  64.     if libkIsDeskTop is false then select the file txtName in currentFolder  
  65.     tell application "TextEdit"  
  66.         activate  
  67.         open newTxt  
  68.     end tell  
  69.       
  70. end tell  

然后保存为:“新建文本文档“

以后即可在finder的服务选项中看到”新建文本文档“选项。

这篇关于Mac添加新建文本文档的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/274271

相关文章

微信公众号脚本-获取热搜自动新建草稿并发布文章

《微信公众号脚本-获取热搜自动新建草稿并发布文章》本来想写一个自动化发布微信公众号的小绿书的脚本,但是微信公众号官网没有小绿书的接口,那就写一个获取热搜微信普通文章的脚本吧,:本文主要介绍微信公众... 目录介绍思路前期准备环境要求获取接口token获取热搜获取热搜数据下载热搜图片给图片加上标题文字上传图片

PyCharm如何设置新建文件默认为LF换行符

《PyCharm如何设置新建文件默认为LF换行符》:本文主要介绍PyCharm如何设置新建文件默认为LF换行符问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录PyCharm设置新建文件默认为LF换行符设置换行符修改换行符总结PyCharm设置新建文件默认为LF

Python解析器安装指南分享(Mac/Windows/Linux)

《Python解析器安装指南分享(Mac/Windows/Linux)》:本文主要介绍Python解析器安装指南(Mac/Windows/Linux),具有很好的参考价值,希望对大家有所帮助,如有... 目NMNkN录1js. 安装包下载1.1 python 下载官网2.核心安装方式3. MACOS 系统安

如何关闭 Mac 触发角功能或设置修饰键? mac电脑防止误触设置技巧

《如何关闭Mac触发角功能或设置修饰键?mac电脑防止误触设置技巧》从Windows换到iOS大半年来,触发角是我觉得值得吹爆的MacBook效率神器,成为一大说服理由,下面我们就来看看mac电... MAC 的「触发角」功能虽然提高了效率,但过于灵敏也让不少用户感到头疼。特别是在关键时刻,一不小心就可能触

mac安装nvm(node.js)多版本管理实践步骤

《mac安装nvm(node.js)多版本管理实践步骤》:本文主要介绍mac安装nvm(node.js)多版本管理的相关资料,NVM是一个用于管理多个Node.js版本的命令行工具,它允许开发者在... 目录NVM功能简介MAC安装实践一、下载nvm二、安装nvm三、安装node.js总结NVM功能简介N

C++实现获取本机MAC地址与IP地址

《C++实现获取本机MAC地址与IP地址》这篇文章主要为大家详细介绍了C++实现获取本机MAC地址与IP地址的两种方式,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 实际工作中,项目上常常需要获取本机的IP地址和MAC地址,在此使用两种方案获取1.MFC中获取IP和MAC地址获取

C/C++通过IP获取局域网网卡MAC地址

《C/C++通过IP获取局域网网卡MAC地址》这篇文章主要为大家详细介绍了C++如何通过Win32API函数SendARP从IP地址获取局域网内网卡的MAC地址,感兴趣的小伙伴可以跟随小编一起学习一下... C/C++通过IP获取局域网网卡MAC地址通过win32 SendARP获取MAC地址代码#i

mac中资源库在哪? macOS资源库文件夹详解

《mac中资源库在哪?macOS资源库文件夹详解》经常使用Mac电脑的用户会发现,找不到Mac电脑的资源库,我们怎么打开资源库并使用呢?下面我们就来看看macOS资源库文件夹详解... 在 MACOS 系统中,「资源库」文件夹是用来存放操作系统和 App 设置的核心位置。虽然平时我们很少直接跟它打交道,但了

macOS怎么轻松更换App图标? Mac电脑图标更换指南

《macOS怎么轻松更换App图标?Mac电脑图标更换指南》想要给你的Mac电脑按照自己的喜好来更换App图标?其实非常简单,只需要两步就能搞定,下面我来详细讲解一下... 虽然 MACOS 的个性化定制选项已经「缩水」,不如早期版本那么丰富,www.chinasem.cn但我们仍然可以按照自己的喜好来更换

mac安装redis全过程

《mac安装redis全过程》文章内容主要介绍了如何从官网下载指定版本的Redis,以及如何在自定义目录下安装和启动Redis,还提到了如何修改Redis的密码和配置文件,以及使用RedisInsig... 目录MAC安装Redis安装启动redis 配置redis 常用命令总结mac安装redis官网下