Where does Notepad ++ maintain a list of open files?

I use Notepad ++ on my Windows machine and by mistake I opened a 64 MB file. Now my Notepad ++ is stuck forever and I cannot use it.

Is there any configuration file that Notepad ++ uses to store a list of open files? If so, is it possible to open this file and delete the record from the 64 megabyte file that I opened in it?

+4
source share
2 answers

C: \ Users \ username \ AppData \ Roaming \ Notepad ++ \ session.xml

+8
source

if your notepad ++ is installed.

should be:

% APPDATA% \ Notepad ++ \ session.xml

% appdata% means by default:

  • if you are using windows 7
    C:\Users\{username}\AppData\Roaming

  • Windows XP )
    C:\Documents and Settings\{username}\Application Data


, ++

:

.


notepad ++ portable notepad ++ :

session.xml

+3

Source: https://habr.com/ru/post/1535102/


All Articles