我一整天都在尝试执行以下操作:我有一个包含 99 个子文件夹的文件夹。每个子文件夹里面都有一个pdf文件,它们都必须重命名才能使用相同的名称。现在它们以连续数字命名。因为我是脚本新手,所以我一直在用自动机做我所有的事情。但我有点不喜欢放弃一个问题。谷歌搜索没有带来任何好的解决方案。我试图理解示例脚本并对其进行修改,但没有成功。一个简短的尝试是:
tell application "Finder"
set selected to selection
open selected
get files of folders of selected
set name of files of folders to "anschreiben"
end tell
我也试过:
tell application "Finder"
set selected to selection
open selected
set mlist to every folder of selected
set current_folder to first item of selected
set xxx to first item of current_folder
set name of xxx to "yyy"
repeat with this_folder in mlist
open current_folder
set item 1 to item of current_folder
end repeat
end tell
,但是这将第一个文件夹重命名为 yyy 并产生了文件名已经给出的错误(因为它重命名了子文件夹,而不是里面的文件)
所以......我如何更深入地了解并重命名子文件夹中的所有文件?
谢谢大家,我知道这对你来说可能很容易。