Where are new files (still unsaved by the user) stored?
-
I open a new file, automatically named “new 1” and write in it. When I close Notepad++ then and open it that file is available with all the text. Where are these files not being saved by the user stored?
When I open Notepad++ and an external drive X: is not connected that file is not opened. And it will not be opened after connecting that drive. How could I open “new 1” though? Or find it on the hard disk?
-
@Cletos said in Where are new files (still unsaved by the user) stored?:
Where are these files not being saved by the user stored?
Look in the “backup” directory as specified in the Preference settings. It is shown there (but you can’t change it).
@Cletos said in Where are new files (still unsaved by the user) stored?:
When I open Notepad++ and an external drive X: is not connected that file is not opened. And it will not be opened after connecting that drive.
I think this is a different question but it is rather muddled. If a file in the default session can’t be found when Notepad++ starts, you should get a prompt about this.
-
Thank you very much!
Mhm.
@Alan-Kilborn said in Where are new files (still unsaved by the user) stored?:I think this is a different question
Yes yes, that’s absolutely right. I would have thought—why ask the same question twice in the same post? But maybe it gets more understandable then.
but it is rather muddled. If a file in the default session can’t be found when Notepad++ starts, you should get a prompt about this.
Ah, sorry, thank God it obviously wasn’t to muddled for you. But maybe there’s some more muddling because of the missing context now. There was no prompt, if I remember correctly. What I meant was:
When I open Notepad++ and an external drive X: is not connected that file is not opened. And it will not be opened (any more) after connecting that drive (and after restarting Notepad++ then). How could I open “new 1” though? Or find it on the hard disk? I’m afraid the file might be removed when Notepad++ reopens, since it couldn’t be found after the drive was disconnected. Is that correct? Apparently, this also happens with backups of unsaved files (e.g., ‘new 1’) when the unsaved originals are discarded in Notepad++.
-
@Cletos said in Where are new files (still unsaved by the user) stored?:
When I open Notepad++ and an external drive X: is not connected that file is not opened. And it will not be opened (any more) after connecting that drive (and after restarting Notepad++ then). How could I open “new 1” though? Or find it on the hard disk? I’m afraid the file might be removed when Notepad++ reopens, since it couldn’t be found after the drive was disconnected. Is that correct? Apparently, this also happens with backups of unsaved files (e.g., ‘new 1’) when the unsaved originals are discarded in Notepad++.
Notepad++ maintains a list of the open tabs or files. The list is stored in your session.xml file. This is how Notepad++ remembers the
new 1
style files. The existence of yournew 1
files is remembered in the session.xml file. The contents of eachnew 1
file are saved in Notepad++'s backup folder.The
new 1
style files are special in that there is no file path for them. The actual file names and file paths to them are hidden within Notepad++. You can see this for yourself by right clicking on the tab for a normal file and selectingCopy to Clipboard / Copy Full File Path
. If you paste that somewhere you will see the full path to your file. When you useCopy to Clipboard / Copy Full File Path
on anew 1
style file it put just the name,new 1
, in the copy/paste buffer and not a full file path.You need to inspect your session.xml file to get the actual file path and file name for the
new 1
file. The actual file path and name will be something likeC:\Users\%USERNAME%\AppData\Roaming\Notepad++\backup\new 1@2025-04-03_093326
where%USERNAME%
is your Windows login name and the2025-04-03_093326
part is the date/time the file was created and is formatted asYYYY-MM-DD_HHMMSS
.There is also one other technical “gotcha” in that when you first create a
new 1
tab that it’s blank or empty and there is no file in Notepad++'s backup folder for it. The instant you put anything in that file, even if it’s to just tap theEnter
key once to add a blank line then Notepad++ silently creates anew 1@2025-04-03_093326
style file in backup folder and will start saving the contents of thenew 1
to that file.When you start Notepad++ it loads the session.xml file to repopulate the tabs. If a file is no longer accessible then Notepad++ silently removes mention of the file from session.xml. Notepad++ used to pop up a warning message that the file was no longer accessible. I have forgotten why this change made sense to people at the time. It means though that if drive X: is not on line at the time you start Notepad++ that the editor will silently remove all of the tabs for files on drive X: when it’s started.
-
@mkupper said in Where are new files (still unsaved by the user) stored?:
If a file is no longer accessible then Notepad++ silently removes mention of the file from session.xml. Notepad++ used to pop up a warning message that the file was no longer accessible. I have forgotten why this change made sense to people at the time.
Unfortunately, you’ve apparently forgotten more than that.
that the editor will silently remove all of the tabs for files on drive X: when it’s started.
Not silently. It prompts you, and gives you a workaround: if you choose Yes, it will create placeholders, in which case you will see empty placeholder tabs in Notepad++, which will automagically re-populate with the contents of the remote file if the drive returns. Or, if you choose No, then it will internally “close” those files and stop looking for them from then on.
Test sequence @ cmd.exe and Notepad++ v8.7.5 (but any recent version (since v8.6) behaves the same):
- c:>
echo FileContents > FileToDelete.txt
- c:>
"c:\program files\Notepad++\notepad++.exe" FileToDelete.txt
- Notepad++ Settings > Preferences > Backup, ensure
☐ Remember inaccessible files from past session
is checkmarked [added this step, see my reply below] - Exit Notepad++, making sure session is saved, so
FileToDelete.txt
will try to be open next run. - c:>
del FileToDelete.txt
- c:>
"c:\program files\Notepad++\notepad++.exe"
- Notepad++ prompts you:
- Choose Yes
- Notepad++ shows an empty (locked) tab:
- c:>
echo NewFileContents > FileToDelete.txt
- When you switch back into Notepad++'s
FileToDelete.txt
tab:
- Say Yes, and you get the new file contents, and Notepad++ unlocks.
- c:>
-
@mkupper ,
Update: It’s here in the User Manual, and that reminded me there’s a Settings > Preferences > Backup setting
☐Remember inaccessible files from past session
which toggles that behavior.I had forgotten there was the setting, and opening a recent portable unzip, I see that feature is off by default, which probably explains why it doesn’t do that for you. Edited the above answer to show people to confirm that setting.
@Cletos ,
Recommendation: If you have network files that sometimes disappear, turn on this setting. -
Thank you very much, mkupper!
You need to inspect your session.xml file to get the actual file path and file name for the new 1 file. The actual file path and name will be something like C:\Users%USERNAME%\AppData\Roaming\Notepad++\backup\new 1@2025-04-03_093326 where %USERNAME% is your Windows login name and the 2025-04-03_093326 part is the date/time the file was created and is formatted as YYYY-MM-DD_HHMMSS.
I guess, the problem is, after restarting Notepad++ (without access to the disconnected drive) that session file will be changed / replaced, so that the older files there are no longer available (if I only had a back up of it). Or am I missing anything?
There is also one other technical “gotcha” in that when you first create a new 1 tab that it’s blank or empty and there is no file in Notepad++'s backup folder for it. The instant you put anything in that file, even if it’s to just tap the Enter key once to add a blank line then Notepad++ silently creates a new 1@2025-04-03_093326 style file in backup folder and will start saving the contents of the new 1 to that file.
Yes, I noticed that behavior. But I am afraid, the back up will be automatically deleted when that new 1 file is not available anymore in Notepad (e.g. after restart without connected drive).
When you start Notepad++ it loads the session.xml file to repopulate the tabs. If a file is no longer accessible then Notepad++ silently removes mention of the file from session.xml.
Yes, that’s the issue here. And it does not keep session file unchanged to the next start (when the drive is connected again). So these informations are lost.
It means though that if drive X: is not on line at the time you start Notepad++ that the editor will silently remove all of the tabs for files on drive X: when it’s started.
Yes, if it would keep the old information, everything would be good.
Not silently. It prompts you, and gives you a workaround: if you choose Yes, it will create placeholders, in which case you will see empty placeholder tabs in Notepad++, which will automagically re-populate with the contents of the remote file if the drive returns. Or, if you choose No, then it will internally “close” those files and stop looking for them from then on.
So one message will appear for ALL the files not available at the moment? Or one for every file not available?
Say Yes, and you get the new file contents, and Notepad++ unlocks.
Ah yes, I seem to remember that. It confused me—I thought it was a bug, misinformation or a malfunction or so, since no other program should’ve / could have modified those .txt files respectively files without extension.
Recommendation: If you have network files that sometimes disappear, turn on this setting.
Many thanks! Yes, just enabled it. -
@Cletos said in Where are new files (still unsaved by the user) stored?:
Thank you very much, mkupper!
You need to inspect your session.xml file to get the actual file path and file name for the new 1 file. The actual file path and name will be something like C:\Users%USERNAME%\AppData\Roaming\Notepad++\backup\new 1@2025-04-03_093326 where %USERNAME% is your Windows login name and the 2025-04-03_093326 part is the date/time the file was created and is formatted as YYYY-MM-DD_HHMMSS.
I guess, the problem is, after restarting Notepad++ (without access to the disconnected drive) that session file will be changed / replaced, so that the older files there are no longer available (if I only had a back up of it). Or am I missing anything?
@Cletos , I think you misunderstood @mkupper. The section about the
new 1
files and thebackup
directory have nothing to do with your X: drive. They are two completely unrelated concepts. Stop mixing them together.There is also one other technical “gotcha” in that when you first create a new 1 tab that it’s blank or empty and there is no file in Notepad++'s backup folder for it. The instant you put anything in that file, even if it’s to just tap the Enter key once to add a blank line then Notepad++ silently creates a new 1@2025-04-03_093326 style file in backup folder and will start saving the contents of the new 1 to that file.
Yes, I noticed that behavior. But I am afraid, the back up will be automatically deleted when that new 1 file is not available anymore in Notepad (e.g. after restart without connected drive).
again,
new 1
behavior has NOTHING to do with the X: drive.new 1
files don’t go on the X:-drive, so whether or not Notepad++ can see the X: drive does not affect thenew 1
behavior in any way, shape, or form.Yes, that’s the issue here. And it does not keep session file unchanged to the next start (when the drive is connected again). So these informations are lost.
When the new setting was added to Notepad++, we encouraged the author to turn it on by default. But he didn’t. So you have to turn it on to get the X:-drive behavior that you want.
Yes, if it would keep the old information, everything would be good.
It does, if you turn on the option.
So one message will appear for ALL the files not available at the moment? Or one for every file not available?
One single message for all files, no matter how many files it was. Hence, the screenshot from the actual occurrence showing the word “files” (plural).
Say Yes, and you get the new file contents, and Notepad++ unlocks.
Ah yes, I seem to remember that. It confused me—I thought it was a bug, misinformation or a malfunction or so, since no other program should’ve / could have modified those .txt files respectively files without extension.
I am sorry it confused you.
Recommendation: If you have network files that sometimes disappear, turn on this setting.
Many thanks! Yes, just enabled it.
Also, make sure you say *Yes to both the “File inaccessible” dialog, and whenever you’ve done that, also say Yes if Notepad++ asks if you want to “reload” the placeholder file.