← Twitch UserVoice Settings and activity Change "My Games" Installation Folder 123 votes Vote Vote Vote We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close Vote We’ll send you updates on this idea 45 comments · Twitch Applications: Desktop » Game Library · Flag idea as inappropriate…Flag idea as inappropriate… · Delete… · Admin → An error occurred while saving the comment johnian80 commented · Jul 26, 2019 · Edit… · Delete… There is a way, I found that the data is stored in a sqlite database in C:\ProgramData\Twitch\Games\Sql\GameInstallInfo.sqlite MAKE A COPY OF THE DATABASE FILE ABOVE IN CASE ANYTHING GOES WRONG Close twitch Download DB browser from https://sqlitebrowser.org/ Use it to open the database file above Click on tab Browse Data and select the table DbSet, now you can see all the games and where they are installed, last column is the game name Go to tab execute sql and execute the following In this case I simply want to move the games from my D to E drive So D:\Twitch\Games... will become E:\Twitch\Games... Modify the 'D:\', 'E:\' to suit your needs, the command will modify all the rows Command: update DbSet set InstallDirectory = replace(InstallDirectory, 'D:\', 'E:\') When you are satisfied with the results, click on Write Changes below the menu to save to the database file Copy the game folders from the old location to the new location Open twitch Save Submitting...
There is a way, I found that the data is stored in a sqlite database in
C:\ProgramData\Twitch\Games\Sql\GameInstallInfo.sqlite
MAKE A COPY OF THE DATABASE FILE ABOVE IN CASE ANYTHING GOES WRONG
Close twitch
Download DB browser from https://sqlitebrowser.org/
Use it to open the database file above
Click on tab Browse Data and select the table DbSet, now you can see all the games and where they are installed, last column is the game name
Go to tab execute sql and execute the following
In this case I simply want to move the games from my D to E drive
So D:\Twitch\Games... will become E:\Twitch\Games...
Modify the 'D:\', 'E:\' to suit your needs, the command will modify all the rows
Command:
update DbSet
set InstallDirectory = replace(InstallDirectory, 'D:\', 'E:\')
When you are satisfied with the results, click on Write Changes below the menu to save to the database file
Copy the game folders from the old location to the new location
Open twitch