AppleScriptでファイルを移動しようとしています。私はそれは素晴らしい作品のような/Users/mainuser/Desktop/Test/test.png
よりも、通常のパスでitem_path
を交換した場合AppleScriptでファイルを移動する
on adding folder items to this_folder after receiving these_items
repeat with i from 1 to number of items in these_items
set this_item to item i of these_items
set the item_info to info for this_item
set the item_path to the quoted form of the POSIX path of this_item
...
... //irrelevant code here
...
tell application "Finder"
move POSIX file item_path to POSIX file "/Users/mainuser/Desktop/Books"
end tell
end repeat
end adding folder items to
:これは私が使用するコードです。私の問題の原因は何でしょうか?