What happened to the Current Tabs, Current Session, Last Tabs, and Last Session files?
I keep a lot of web pages open at once, and I don't like to lose them. There are some sites which I intentionally keep open all the time. There are many others I leave open until I "get around to" dealing with them, in a few days, weeks or months.
When Chrome recovers from a crash, it doesn't always give me the option of restoring my tabs. I hate to lose them, so for years I've run a .bat script which saves my Chrome tabs, simply by copying the five files which contained that information. Here's the key part of my backup_chrome_tabs.bat script:
copy /y "%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Local State" c:\chrome_tabs\
copy /y "%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Current Session" c:\chrome_tabs\
copy /y "%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Current Tabs" c:\chrome_tabs\
copy /y "%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Last Session" c:\chrome_tabs\
copy /y "%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Last Tabs" c:\chrome_tabs\
(There's more to it than that, because my script actually keeps several versions, but you get the idea.)
My script runs whenever Windows starts, and I can also run it manually (which I do after a Chrome crash).
Of course, I also wrote a companion script, restore_chrome_tabs.bat, which I can run to restore the backed-up Chrome tabs.
But in Chrome version 86.0.4240.111 it has all stopped working, because the "%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Current*" and ""%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Last*" files are gone.
I installed Chromium for Windows, Version 88.0.4301.0 (Developer Build) (32-bit), and the Current* and Last* files are missing in it, too.
Instead, there now seems to be a folder called "sessions," which contains similar files:
10/22/2020 09:25 AM 16,483,414 Session_13247241247398859
10/22/2020 09:35 AM 16,737,956 Session_13247847244245926
10/22/2020 09:16 AM 643,052 Tabs_13247241247845795
10/22/2020 09:34 AM 8 Tabs_13247847245239283
I expected that the "Local State" file would include a reference to the current files in the sessions folder, but that doesn't seem to be the case.
Does anyone know how this works, now? I'd like to fix my backup_chrome_tabs.bat and restore_chrome_tabs.bat scripts.
Dave