www.un.org/Depts/DGACM/index_spanish.htm Gday
这也许不是最快的方式——但我看到你仍在等待答复——因此,你开始做些什么。 挑选出主人的所有身份证,并用文字编辑处理。
set theTemplate to "Macintosh HD:Users:[user name]:[folder:location]:TEMPLATE.THM"
tell application "Finder"
set theFiles to selection
repeat with thisFile in theFiles
set thisName to name of thisFile
set theFolder to container of thisFile
set newFile to duplicate theTemplate to theFolder
set text item delimiters of AppleScript to "."
set thisName to text item 1 of thisName
set text item delimiters of AppleScript to ""
set newName to (thisName & ".THM")
set name of newFile to newName
end repeat
end tell
进入模板最容易的方法是选择在发现器中,并操作:
tell application "Finder"
set theFile to selection as string
end tell
这将把这条道路放在你的成果窗口上——仅将其复制到上述文字的第一行。
帮助的希望
<>