Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Notepad3 always creates new files in its Program Files directory #5306

Open
chipplyman opened this issue Oct 1, 2024 · 1 comment
Open

Comments

@chipplyman
Copy link

Repro:

  1. cd c:\mydirectory
  2. c:\Program Files\Notepad3\Notepad3.exe foo.txt
  3. Answer Yes when notepad3 asks if you would like to create the file
  4. Save
  5. Quit
  6. Repeat step 2

Expected result:

  • c:\mydirectory\foo.txt exists after step 4 and is re-opened at step 6
  • The working directory of Notepad3 is c:\mydirectory
  • Notepad3 looks only in the working directory for the file specified on the command line. It does not look in its own exe directory or in the PATH for that file.

Actual result:

  • c:\Program Files\Notepad3\foo.txt exists after step 4 and is re-opened at step 6
  • Notepad3's working directory is c:\Program Files\Notepad3
  • If a file is specified that does not exist locally or in the exe directory, it may be opened from some arbitrary location specified in the PATH.
  • This occurs even if I specify .\foo.txt or ..\mydirectory\foo.txt, which both should unambiguously signal that I want only a file in the current directory
  • The only way I can find to ensure that my file is created or opened from where I expect is to specify a full path

Remarks:
I see in the Process Start event in Process Monitor that notepad3.exe starts in c:\mydirectory. At some point during initialization, it changes its working directory to the exe location.

I can think of zero valid use cases for searching in the PATH for a text file. The PATH is intended to be used for locating executable files.

@mrx23dot
Copy link

mrx23dot commented Nov 6, 2024

Program Files shouldn't be touched, would raise UAC everytime.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants