Well many users who have shifted to Mac OS X would be facing a difficulty to permanently delete files, but there is way to perform this function. Now you can use the following Applescript Delete file code that would enable you to delete files permanently:
To send the item to Trash, use the following code:
set theFile to choose file
tell application “Finder”
delete theFile
end tell
In order to empty the trash for permanent deletion of item(s) the following code can be used:
set theFile to choose file
tell application “Finder”
delete theFile
empty the trash
end tell
Make sure that you do not delete important files. First try the code and if it works well with you then go for it.

























































