我正在尝试制作一个循环脚本,它将获取父文件夹并找到所有子文件夹。这样我就可以一次拿一个,然后在它们上面运行第二个脚本。
如果我正在寻找文本文件,这将起作用。我想尝试使用它来查找文件夹,但不知道如何并且在那个方向上找不到任何东西。
-- Search for Subfolder
set ParentPath to choose folder
set allFiles to (do shell script "find " & quoted form of POSIX path of ParentPath & " -iname \"*.eps\""))
-- Process files
repeat with nFile in allFiles
my runScript(nFile)
end repeat
理论上会是这样。
-- Search for Subfolder
set ParentPath to choose folder
set allFiles to all folders inside ParentPath
-- Process files
repeat with nFile in allFiles
my runScript(nFile)
end repeat
谢谢!