我正在尝试将文件复制到AppleScript中的网络驱动器。
通常我会的..
do script "mv ~/Desktop/file.txt ~/Folder/file.txt"
网络驱动器的正确路径是什么?我通常通过执行以下操作与finder连接:
tell application "Finder"
open location "smb://user:password@netDrive/MyShare"
end tell
我该怎么办:
do script "mv ~/Desktop/file.txt smb://user:password@netDrive/MyShare/Folder/file.txt"