Moving Files?

Hello,

Im a newbie and was wondering if it would be possible to create a simple script to simply move a “.torrent” file from one folder to another folder, with a single click? Thanks.

Ben

If you insert the proper paths into line 3 of this script, it should do what you want it to do.

tell application "Finder"
	try
		move file "path:to:file" to folder "path:to:destination folder:"
	on error err
		display dialog err
	end try
end tell

– Rob