folder action

Hi i’ve modified the add item to folder notification so that when an song is added my itunes music folder it is duplicated onto a network disk so my desktop and laptop will have the same music. Here’s the problem. When I download a song using acquisition it sticks it into my music folder automatically but if i already have a folder for that artist it just sticks it in their bypassing the itunes folder. How can i include all the subfolders in itunes to this script. thanks guys.

on adding folder items to this_folder and subfolders after receiving added_items
tell application “Finder”
try
mount volume “smb://192.168.2.100/shareddocs”

	end try
	
	
	
	try
		duplicate (added_items) to folder "zunemusic" of folder "my music" of disk "shareddocs"
		
		eject disk "shareddocs"
		
	end try
end tell

end adding folder items to

any help guys??