Util they add this feature you would use powershell to create a custom actions by watching a text file, group, email, popup message or even SNMP.
Basic command to copy file listed in a text file, would need to expand it update the text file after the copy is complete:
Get-Content myfile.txt|Foreach-Object{copy-item -path $_.FullName -destination
"path_to_destination"}
Tony