I have not yet bought the software, honestly i need to know what I am doing will work with it first.
I gave a read of the documentation, and I "think" it can work, but I am not finding anything specific to how to parse a file name to get sub sub folders. If I missed it I apologize, just not really sure where to look for this.
Here is my example.
I have a number of files (say 5000 of them) that will be deposited in a folder - that folder needs to be monitored (which the software can do)
Files will look like this
SNG_U10_SMITH_01.JPG
SNG_U10_SMITH_02.JPG
SNG_U10_ADAMS_01.JPG
DBL_U9_JONES_01.JPG
DBL_U11_PORTER_01.JPG
basically the first set of characters is the first level of folders, then next set of characters is the second level of folder, the third set of characters is a third level of folders. each file needs to be put into the appropriate 3rd level of folder - if the folder doesn't exist it needs to create it. The _ is the break between each level of folder
So these files would end up in:
Root --> SNG --> U10 --> SMITH
SNG_U10_SMITH_01.JPG
SNG_U10_SMITH_02.JPG
Root --> SNG --> U10 --> - ADAMS
SNG_U10_ADAMS_01.JPG
Root --> DBL--> U9 --> JONES
DBL_U9_JONES_01.JPG
Root --> DBL--> U11 --> Porter
DBL_U11_PORTER_01.JPG
can the software parse the file name using the _ and create the appropriate folders and deposit the files 3 layers down?