Answered
Delete Active Document - Recycle Bin
Hello everyone,
I'm running windows 10 and I have this small script to delete active document. This script is irreversible the file is being deleted for good. Is there a way to upgrade the script to send it to the recycle bin ?
Here is my code:
#target photoshop
var FullPath = app.activeDocument.path.fsName;
var Name = app.activeDocument.name;
var myFile = new File(FullPath + "\\" + Name);
myFile.remove();
