Re: Any way to delete a busy file?
Re: Any way to delete a busy file?
- Subject: Re: Any way to delete a busy file?
- From: JJ <email@hidden>
- Date: Tue, 30 Jan 2001 18:06:09 +0100
Have you tried Jon's Commands?
This is a dropplet
on open (fileList)
try
repeat with thisFile in fileList
tell application "Finder" to deleteFile thisFile with unlocking
without safety net -- Jon's Commands
end repeat
on error
end try
try
repeat with thisFile in fileList
moveFile thisFile to the trash
tell application "Finder" to empty trash -- Standard Additions
end repeat
on error
end try
end open