I accidentally moved my "Documents" into my "Downloads" - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5) +--- Forum: Other (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=20) +--- Thread: I accidentally moved my "Documents" into my "Downloads" (/showthread.php?tid=6460) |
I accidentally moved my "Documents" into my "Downloads" - kris84 - 09-20-2019 I must've clicked and dragged by mistake because now my Documents folder is inside my Downloads folder. When I drag the folder to the side pane, it simply creates a link there to the /home/kris/Downloads/Documents folder. How do I get it back the way it was (not as a subdirectory)? Re: I accidentally moved my "Documents" into my "Downloads" - firenice03 - 09-20-2019 (09-20-2019, 10:14 PM)kris84 link Wrote: I must've clicked and dragged by mistake because now my Documents folder is inside my Downloads folder. When I drag the folder to the side pane, it simply creates a link there to the /home/kris/Downloads/Documents folder. How do I get it back the way it was (not as a subdirectory)?[member=6848]kris84[/member] Try right click Documents cut, go up a level (/home/kris) and paste.. or in terminal... Code: mv /home/kris/Downloads/Documents /home/kris/ if you get a permissions error use sudo Code: sudo mv /home/kris/Downloads/Documents /home/kris/ Re: I accidentally moved my "Documents" into my "Downloads" - kris84 - 09-20-2019 That worked! Thanks! I think I panicked too much to think of such a simple solution. Re: I accidentally moved my "Documents" into my "Downloads" - firenice03 - 09-21-2019 (09-20-2019, 11:01 PM)kris84 link Wrote: That worked! Thanks! I think I panicked too much to think of such a simple solution.[member=6848]kris84[/member] Good to hear!!! Never hurts to try the simple things 1st.. But if panicked the forum is here |