• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sync settings among devices
#8
Just use a SQL editor like SQLite Studio to run a query against the relevant tables and replace the beginning of every Android file path with the Windows path. The query would basically be as follows:

UPDATE Files SET Path = replace( Path, '/storage/emulated/0/Android/data/com.zubersoft.mobilesheetspro/files', 'C:\\MyFolder' ) WHERE Path LIKE '/storage/emulated/0/Android/data/com.zubersoft.mobilesheetspro/files%';

Just replace the Android and Windows paths listed as necessary. Then run the same query against the audio files table if you need to update that one as well. You may want to run the same query to replace forward slashes with backward slashes if there are additional folders under the storage location. Windows and MobileSheets may or may not handle those paths correctly if you don't do that. I think the query would just be:

UPDATE Files SET Path = replace(Path, '/', '\\' )

Mike
Reply


Messages In This Thread
Sync settings among devices - by maestralien - 05-09-2017, 07:14 AM
RE: Sync settings among devices - by Zubersoft - 05-09-2017, 03:42 PM
RE: Sync settings among devices - by maestralien - 05-10-2017, 01:00 AM
RE: Sync settings among devices - by Zubersoft - 05-13-2017, 02:01 AM
RE: Sync settings among devices - by BRX - 05-19-2017, 06:54 PM
RE: Sync settings among devices - by itsme - 05-20-2017, 04:05 AM
RE: Sync settings among devices - by BRX - 05-20-2017, 09:22 AM
RE: Sync settings among devices - by Zubersoft - 05-20-2017, 04:50 PM



Users browsing this thread:
1 Guest(s)


  Theme © 2014 iAndrew  
Powered By MyBB, © 2002-2024 MyBB Group.