Using WinXP + XnV 1.97.6
I have about 10k files in D:\ with categories.
I'm wanting to move them to a network drive.
I don't want to lose the categories.
What do I do?
categories
Moderator: xnview
-
xnview
- Author of XnView
- Posts: 47528
- Joined: Mon Oct 13, 2003 7:31 am
- Location: France
-
obelisk
- Posts: 486
- Joined: Fri Jan 09, 2009 9:54 am
Re: categories
yes that is right
basically
D:\Photos\
and under that folder for each year and inside folder for every event and inside folder for jpg, raw, video, etc
basically
D:\Photos\
and under that folder for each year and inside folder for every event and inside folder for jpg, raw, video, etc
-
xnview
- Author of XnView
- Posts: 47528
- Joined: Mon Oct 13, 2003 7:31 am
- Location: France
Re: categories
So make a bakcup of category file 
And download SQLiteBrowser (http://sqlitebrowser.sourceforge.net/)
In t2 table you can see the files...
To change the path go to 'execute SQL' and type:
(replace 'c:\new path\' & 'e:\old path\')
And download SQLiteBrowser (http://sqlitebrowser.sourceforge.net/)
In t2 table you can see the files...
To change the path go to 'execute SQL' and type:
Code: Select all
update t2 set f = 'c:\new path\' || substr(f,length('e:\old path\') +1,999) where f like "e:\old path\%"
Pierre.
-
obelisk
- Posts: 486
- Joined: Fri Jan 09, 2009 9:54 am
Re: categories
thanks. we should put this in a faq somewhere.