Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
久しぶりに Windows を使用し、メモ帳 ++ を手に入れ、nppexec プラグインを使用して Python スクリプトを実行しています。しかし、notepad++ はスクリプトが保存されているディレクトリを取得しないことに気付きました。
この動作を変更する方法を知っている人はいますか? Macではまったく慣れていません。
Notepad++ >nppexec >$(現在のディレクトリ) をたどる
スクリプトの先頭に次のようなものを配置できます。
import os os.chdir(os.path.dirname(__file__))