申し訳ありませんが、ここでは AppleScripting の完全な初心者です。
私は非常に簡単なことをしようとしています。ファイルをあるフォルダーから別のフォルダーに移動します。
tell application "Finder"
set this_folder to "Users:chris.nicol:Movies:SmartConverter:"
set this_list to every file of this_folder
repeat with i in this_list
--if i does not start with "x" then
move i to "users:chris.nicol:music:itunes:itunes media:automatically add to itunes:"
--end if
end repeat
end tell
ただし、エラーが発生し続けます:
フォルダーに対してさまざまなコマンド (count、parentContainer など) を試しましたが、同じ種類のエラーが発生します。フォルダに別のフォーマットを試しました...
- Users/chris.nicol/Movies/SmartConverter/
- Macintosh HD:Users:chris.nicol:Movies:SmartConverter
- 等
私が間違っていることについてのアイデアはありますか?
前もって感謝します、クリス