Moving folders from Appdata

DickMcFuck

Active Member
Aug 13, 2019
502
992
Hey folks,

ive got a technical question regarding the Appdata Folder. Ive bought a large external HDD recently to extend my storage and want to move all of my Games and Art onto that, so now i am wondering if i can move my saves from the Appdata Folder onto this drive and still use them without issues.
 

Lucid Lust

Lucid Dev
Game Developer
Mar 22, 2023
90
650
Hi, if you want to relocate the appdata folder to your HDD, you need to tell Windows about it, here is the procedure:

-> move your appdata folder to your HDD
-> Open the cmd console as an admin
-> you should be somewherte like this "C:\Users\YourName>"
-> type "cd appdata" (to access the appdata directory)
-> type "mklink /(your HDD letter) local (your HDD letter):\appdata\local"

So for example if your HDD is the letter D, you should type "mklink /D local D:\appdata\local"

Hope this help!
 
  • Heart
Reactions: DickMcFuck

DickMcFuck

Active Member
Aug 13, 2019
502
992
Hi, if you want to relocate the appdata folder to your HDD, you need to tell Windows about it, here is the procedure:

-> move your appdata folder to your HDD
-> Open the cmd console as an admin
-> you should be somewherte like this "C:\Users\YourName>"
-> type "cd appdata" (to access the appdata directory)
-> type "mklink /(your HDD letter) local (your HDD letter):\appdata\local"

So for example if your HDD is the letter D, you should type "mklink /D local D:\appdata\local"

Hope this help!
Hey!
Thank you very much, i am gonna try that.