As mentioned in the comments above, bash/sed/awk is the not ideal for parsing JSON. Since you've hinted that CSV is an option, I'd say that's your best bet.
Since I don't know if this is an assignment and you've yet to mention what you've attempted, I'll refrain from writing a full script for you. Instead, here's a quick run-through of the core bits which will hopefully help you forward.
And since you've did not provide an example input file, I'm going to make one up. Say you have an input CSV file as such:
$ cat in.csv
john,hello/world/domination.txt,10
ruth,some_file.txt,20
sarah,jessica/parker.jpg,80
Looping through contents of the CSV file
The simplest way would be to use a while loop and read:
$ while IFS=',' read -r NAME FILENAME AGE; do echo "$FILENAME"; done < in.csv
hello/world/domination.txt
some_file.txt
jessica/parker.jpg
in/my documents/empty.file
Note that we've temporarily changed IFS (internal file separator) to a comma to split the input CSV lines into fields.
The copy command
Assuming that in your script you have a base path (your "... folder containing LOTS of files (with a complex file hierarchy)") and a destination directory as such:
BASE_PATH="/some/source/"
DEST_PATH="/the/destination/"
and for each filename from the CSV file -- say hello/world/domination.txt -- you want to end up copying from /some/source/hello/world/domination.txt to /the/destination/hello/world/domination.txt, then there are 3 steps involved:
Create the FROM and TO paths by appending the strings:
FROM="${BASE_PATH}/${FILENAME}"
TO="${DEST_PATH}/${FILENAME}"
Make sure that the destination directory exist. We use dirname to extract the name of the directory, and mkdir -p to recursively create directories if they do not yet exist:
mkdir -p "$(dirname $TO)"
Perform the actual copy
cp "$FROM" "$TO"
The quotes around the arguments for mkdir and cp ensure that paths with spaces are not treated as separate arguments.
Note that for brevity, I've left out error checking. In a production script you'd generally want to include checks to ensure that the source files exist and is readable, and the destination path is writeable.
putting it all together
Assuming you have already assigned BASE_PATH and DEST_PATH:
while IFS=',' read -r NAME FILENAME AGE
do
FROM="${BASE_PATH}/${FILENAME}"
TO="${DEST_PATH}/${FILENAME}"
mkdir "$(dirname $TO)"
cp "$FROM" "$TO"
done < in.csv