Hi guys i have been using robocopy to backup to my external drive array with no problems for months now and have never had a problem with it.
My problem lies with copying specific folders, or in fact using a right-click >sendto cmd file that looks like this
what this should do is copy the folder selected and right clicked and copy it to k:\music\ (k: is my phones mem card) only problem is that it is not recreating the directory structure, just dumping the files in the music folder on k: other than that it works fine.
I need the directory structure for the player on the phone to detect artist and album.
Can anyone help please what am i missing? any ideas?
My problem lies with copying specific folders, or in fact using a right-click >sendto cmd file that looks like this
Code:
@echo off
robocopy %1 k:\music\ /S /E /Z /XF *.jpg /XF *.ini /XF *.db
exit
what this should do is copy the folder selected and right clicked and copy it to k:\music\ (k: is my phones mem card) only problem is that it is not recreating the directory structure, just dumping the files in the music folder on k: other than that it works fine.
I need the directory structure for the player on the phone to detect artist and album.
Can anyone help please what am i missing? any ideas?