Copying folders from Network to network

Hi

I reached a dead end on this. Please help.

I wish to copy folders from a remote mac (LAN) to a NAS drive. The applescript governing the operation is being called from another remote mac on the LAN.

Although I can create folders on the NAS I can’t get the script to copy the folders to the NAS

so…

tell application “Finder”

	make new folder at p_ath with properties {name:foldername}
end tell

creates the folders but

tell application “Finder” <<<of machine “eppc://G5server@192.168.0.7”>>>

	duplicate copy_file to destfolder with replacing
end tell

does not copy the folders with or without the eppc ref

Any help?


tell application "Finder" of machine (get "eppc://Batman:@192.168.1.80:8176")
	using terms from application "Finder"
		duplicate copy_file of machine "eppc://Display:X@192.168.1.95" to destfoler with replacing
	end using terms from
end tell

machine “eppc://Display:X@192.168.1.95” is YOUR machine