LoginSignup
0
0

More than 5 years have passed since last update.

Automatorで削除したファイルはゴミ箱から戻せない

Posted at

アクションの「Finder項目をゴミ箱へ入れる」で削除したファイルは元の場所に戻せない。

戻せるようにしたい場合は、AppleScriptで削除する。

AppleScriptを実行
on run {input, parameters}
  tell application "Finder"
    repeat with theFile in input
      delete theFile
    end repeat
  end tell
end run
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0