I guess you've restarted your server since you removed F:\My Media? It would be interesting to read the log files referenced from About -> Bug report otherwise, to see if they give a clue on what went wrong (that's the best way to troubleshoot).
To delete directories from the PostgreSQL database, you need to use a tool called PgAdmin that came with the PostgreSQL install. It's graphical and not very complicated. See this screenshot:
http://pgadmin.org/images/screenshots/p ... _win32.pngYou navigate in the left side view, by right-clicking and connecting to your own PostgreSQL server. Then, mark the database "musiccabinet" and press the SQL button (next to the Recycle bin button). This brings up a new window where you can execute arbitrary SQL commands.
To look for top directories, type this and then press the green forward arrow to execute the command:
- Code: Select all
select path, deleted from library.directory where parent_id is null order by 1;
It should display G:\Movies, H:\TV etc. I'd be interested to hear what is prints, actually, if you don't mind pasting it here.
To delete directories from the database, copy a path you want to remove (they're case sensitive, so you can't just type h:\tv), and type something like this and press the green forward arrow again:
- Code: Select all
insert into library.directory_delete (path) values ('F:\My Media');
select library.delete_from_library();
This will take a little while to complete (maybe 10sec, but it totally depends on your library size), just let it run until it finishes.
This should remove F:\My Media from your file tree view.
If you remember anything about how this situation happened (to help me reproduce it), I'd be interested to hear that, too.
Thanks.