Moving files to new hard drive

Hey, guys,

I’m upgrading to a bigger hard drive and will be moving over my library, but the new drive has a different name (which I’d like to keep).

Since I’ll be keeping the exact same structure and names for the movies and TV shows, what’s the easiest way make the move? Can I just edit the hard drive name in the Plex Library settings? Should I add the new directories, then remove the old ones?

Any help would be appreciated. Thanks!

There is a support page covering the move of media content -
see https://support.plex.tv/hc/en-us/articles/201154537-Move-Media-Content-to-a-New-Location

There is also a support page covering the move of an install
https://support.plex.tv/hc/en-us/articles/201370363-Move-an-Install-to-Another-System

@sa2000 said:
There is a support page covering the move of media content -
see https://support.plex.tv/hc/en-us/articles/201154537-Move-Media-Content-to-a-New-Location

There is also a support page covering the move of an install
https://support.plex.tv/hc/en-us/articles/201370363-Move-an-Install-to-Another-System

Yes, I saw this, but I created the thread to check if the other method would also work. Wasn’t sure if the page was up-to-date. Thanks.

On OS X, go there to find the SQLite3 database:
~/Library/Application Support/Plex Media Server/Plug-in Support/Databases/com.plexapp.plugins.library.db

NEVER, EVER, make any modification to your database before you backup the file (a duplicate, a second copy of it) in case things go wrong and you end up with a corrupted database…

Let’s proceed…

The desired database table is section_locations and the column os root_path.

Something roughly like this would do the trick:

UPDATE `section_locations` 
   SET `root_path`=
       REPLACE(`root_path`, 
	           '/Old_Volume_Name/', 
			   '/NEW_Volume_Name/')
 WHERE `root_path` like '%Old_Volume_Name%';

Make sure to correctly set every occurence (3) of Old/NEW_Volume_Name if you plan to use this example…