Jump to content

Can you move game data folders and still have the game operate?

corrado33

Many of us have a faster drive (SSD) and a slower drive (HDD). So if I install my current game on my SSD, but then I get bored with it, can I move the entire folder to the storage drive and still have it work (assuming I update the shortcut definition?) I'd be a shame to have to reinstall it on the HDD just to move the files...

Link to comment
Share on other sites

Link to post
Share on other sites

Yes you can. Which game

Link to comment
Share on other sites

Link to post
Share on other sites

sometimes in the In-game menu you can choose where saves are located.

Link to comment
Share on other sites

Link to post
Share on other sites

Make a copy of the entire folder first and then move it. Some ini's hold the location in their contents.

Cor Caeruleus Reborn v6

Spoiler

CPU: Intel - Core i7-8700K

CPU Cooler: be quiet! - PURE ROCK 
Thermal Compound: Arctic Silver - 5 High-Density Polysynthetic Silver 3.5g Thermal Paste 
Motherboard: ASRock Z370 Extreme4
Memory: G.Skill TridentZ RGB 2x8GB 3200/14
Storage: Samsung - 850 EVO-Series 500GB 2.5" Solid State Drive 
Storage: Samsung - 960 EVO 500GB M.2-2280 Solid State Drive
Storage: Western Digital - Blue 2TB 3.5" 5400RPM Internal Hard Drive
Storage: Western Digital - BLACK SERIES 3TB 3.5" 7200RPM Internal Hard Drive
Video Card: EVGA - 970 SSC ACX (1080 is in RMA)
Case: Fractal Design - Define R5 w/Window (Black) ATX Mid Tower Case
Power Supply: EVGA - SuperNOVA P2 750W with CableMod blue/black Pro Series
Optical Drive: LG - WH16NS40 Blu-Ray/DVD/CD Writer 
Operating System: Microsoft - Windows 10 Pro OEM 64-bit and Linux Mint Serena
Keyboard: Logitech - G910 Orion Spectrum RGB Wired Gaming Keyboard
Mouse: Logitech - G502 Wired Optical Mouse
Headphones: Logitech - G430 7.1 Channel  Headset
Speakers: Logitech - Z506 155W 5.1ch Speakers

 

Link to comment
Share on other sites

Link to post
Share on other sites

some games refuse to work if you move them, Paragon for example

in those cases, symbolic links - ftw!

Link to comment
Share on other sites

Link to post
Share on other sites

You can use the command line application MKLINK  to create a directory symbolic link.

For example,, let's say you have a game called GAME and it's installed in the C:\Games folder  but you want to move it to D:\AllGames\FromDriveC

You just move it manually there, so now you have D:\Allgames\FromDriveC\GAME  and now you can make a directory symbolic link to trick the game into thinking it's still running from C:

 

press start, type cmd in the search box, right click on cmd.exe and select run as administrator  (or press Ctrl+Shift when clicking on it, which means request administrator priviledges for it)

 

mklink /D C:\Games\GAME D:\Allgames\FromDriveC\GAME

 

and a folder will show up in C:\games\ called GAME and if you enter it, you're automatically redirected to the folder in D:  and if steam or any app requests any file from game in C: it's automatically served the file from the folder in D:

 

if you don't want to see the redirection, use /J instead of /D and that will create a junction instead of a directory symbolic link ( if you don't know the difference, it doesn't really matter)

 

 

Link to comment
Share on other sites

Link to post
Share on other sites

15 minutes ago, dexxterlab97 said:

Yes you can. Which game

All of them. I wasn't thinking a single game, just a general practice.

1 minute ago, mariushm said:

You can use the command line application MKLINK  to create a directory symbolic link.

For example,, let's say you have a game called GAME and it's installed in the C:\Games folder  but you want to move it to D:\AllGames\FromDriveC

You just move it manually there, so now you have D:\Allgames\FromDriveC\GAME  and now you can make a directory symbolic link to trick the game into thinking it's still running from C:

 

press start, type cmd in the search box, right click on cmd.exe and select run as administrator  (or press Ctrl+Shift when clicking on it, which means request administrator priviledges for it)

 

mklink /D C:\Games\GAME D:\Allgames\FromDriveC\GAME

 

and a folder will show up in C:\games\ called GAME and if you enter it, you're automatically redirected to the folder in D:  and if steam or any app requests any file from game in C: it's automatically served the file from the folder in D:

 

if you don't want to see the redirection, use /J instead of /D and that will create a junction instead of a directory symbolic link ( if you don't know the difference, it doesn't really matter)

 

 

Great! Thanks for the great info.

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×