使用 applescript 删除当前文件夹的子文件夹

Delete sub folders of current folder with applescript

我有这个简单的 applescsript:

tell application "Finder"
set xfolder to target of Finder window 1
move files of entire contents of xfolder to xfolder
end tell

这会将当前文件夹的子文件夹中的每个文件移动到父文件夹。

我希望它在文件移动后也删除此子文件夹。

无法正常工作...

如果您所说的“删除”是指将文件夹放入回收站,那么这应该可行。

请记住,此处没有错误更正,因此(例如)如果层次结构中存在重名文件,由此产生的错误将终止脚本。

tell application "Finder"
    set xfolder to target of Finder window 1
    move files of entire contents of xfolder to xfolder
    delete folders of entire contents of xfolder
end tell