Hi,
I am trying to create the same folder structure on my portable USB as it is on my computer drive. The Fields <Folder Name>\<filename> would only create 1 level of folder where the mp3 files are located, but not the subfolder structure. So I tried to use Function Fields e.g.
$Replace($CutLeft(<path>,3),\,\\)\<filename>
.
- The function
"$CutLeft(<path>,3)" would give the folder structure by cutting out the
"[Drive]:\" and giving the rest of the Path including subfolder. See the Preview:
But this would sync the folders without "\" e.g. the folders on my Portable USB Device would be created like:
I:\Audio Books 100 ways to motivate yourself\100 ways to motivate your... mp3It is not rendering the "\" and converting to " ", while the "\\" before file name is rendered to "\". So to cop this, I tried to replace "\" with "\\" using the following method:
$Replace($CutLeft(<path>,3),\,\\)\<filename>
Although, in the Preview, it seems to be generating the folder structure fine, but when I sync, it again misses the "\" and convert to spaces.
It also never worked with
$Replace($CutLeft(<path>,3),"\","\\")\<filename>.
1. Is this the correct way to use functions? But it is not working eventhough the preview was correct.
2. How to create the same folder and files structure on portable usb with sync, as it is on the source drive?