if you want to learn how to move a folder in linux this is how you do it with this command

mv


lets say i want to move a file from my home directory:
/home/user1/mydocs/mypics.jpg

and i wan to move it to my pictures folder at:
/home/user2/mypcis/


i would send this command:
mv /home/user1/mydocs/mypics.jpg /home/user2/mypcis/


so basically, the syntax is:
mv from_here to_here