I'm not sure what I should be using for this... PHP? Anyway, I've got a CSV that will have these columns:
id, full path(incl filename)
for example:
1,/web/abc/def/document1.doc
2,/abc/def/readme.pdf
What I want to do is this:
a. create a directory based on the id # (so that the directories should be named "1", "2", etc.)
b. move or copy that file into the newly created directory, so that it the above structure becomes 1/document1.doc , 2/readme.pdf
id, full path(incl filename)
for example:
1,/web/abc/def/document1.doc
2,/abc/def/readme.pdf
What I want to do is this:
a. create a directory based on the id # (so that the directories should be named "1", "2", etc.)
b. move or copy that file into the newly created directory, so that it the above structure becomes 1/document1.doc , 2/readme.pdf