I have a list of files, with file paths, in column A.
I need to copy each file into a directory that has the same folder path (like a backup being restored).
How do I loop through column A and copy each file to column B's location?
Column A
C:\Users\user\Desktop\Test\test1\test1d.txt
C:\Users\user\Desktop\Test\test2\test2d.txt
C:\Users\user\Desktop\Test\test3\test3d.txt
...
Column B
D:\Users\user\Desktop\Test\test1\
D:\Users\user\Desktop\Test\test2\
D:\Users\user\Desktop\Test\test3\
...
I searched quite a few topics, but none were able to help me get to what I need to do.