Assuming I have 2 folders - Images A, and Images B, and there's a bunch of images in each folder. These folders have the following structure:
Images A
-- 1111,jpg
-- 2222.jpg
-- 3333.jpg
-- 4444.jpg
-- 5555.jpg
Images B
-- 6666,jpg
-- 7777.jpg
-- 8888.jpg
-- 99999.jpg
Plus, I have a csv with a list of image names. Thing is, I need to move those images ( from imagesA/B) to a new empty folder, let's call it - New Folder. Question is how do I do it?
The csv file looks like this:
blabla/blabla2/blabla3/2222.jpg
blabla/blabla2/blabla3/7777.jpg
(Needless to mention that I don't have all the blabla directories, I should use split and forget about all the blabla).