My intention is to move any newly downloaded music from Downloads Folder to a "Music" folder, then have it import onto iTunes.
In my Downloads folder , i have run rules on folder contents, Then i have the folllowing rules:
Code:
If "all" of the following conditions are met
Subfolder Depth is greater than 0
Kind if Music
Do the following:
Run AppleScript embedded script : tell application "Finder"
set posix_parent_dir to POSIX path of (container of (item theFile) as text)
end tell
return {hazelSwitchFile:posix_parent_dir}
Move File to folder "New Music"
I then have a rule to ove Music on the Top level:
Code:
If all of the following conditions are met
Subfolder Depth is 0
Kind is Music
Do the following:
Move File to folder "New Music"
Then i have 2 rules setup for the "New Music" folder
The first rule is to run rules on folder contents
Then i have the following rule:
Code:
If all of the following conditions are met
Kind is Music
Date Last Modified is Today
Do the following:
Import into iTunes to playlist Music
------------------------------------------------------------------------------------
I have check everything experimented with...
It all works with newly downloaded music to download and move them to "new music" folder...but it failes to import it to iTunes Library even thought the folder falls into the "Date Last Modified is Today" criteria.
