1. It will not copy/move on top of an existing file. So, I can't just bulk copy a bunch of disk images to my archive directory, hoping to update the older versions. All I get is an "OK" dialog, which then forces me to use the Finder to complete the copying.
2. There is no progress bar, so I really don't know when large copies/moves have ended.
Both of these problems could be solved very nicely by having LaunchBar invoke the Finder to perform the moves/copies (or Path Finder), rather than doing it itself. Internally, it could just be a snippet of AppleScript based on which Finder I'm using:
Code: Select all
tell application "Path Finder"
duplicate/move {"/some paths..."} to "/Target folder"
end tell
John