I have created an Applescript that will, with one click, add the contents of a specific folder on my hard drive to iTunes (I really want to avoid using the iTunes organisational system).
It looks like this:
tell application "iTunes" set theFolder to ("Macintosh HD:Temp to be Listened to:Temp on iPod:") set with_subfolders to true --list subfolders or not (recursion) set parent_folder to theFolder end tell
tell application "System Events" set item_list to parent_folder end tell
tell application "iTunes" add contents of parent_folder to user playlist "Temp on iPod" end tell
However, it only imports into iTunes the files from the top level/parent folder. Is there a way I can get it to be recursive - I want to include files from the folders in the parent folder.
Thanks
Tardy