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 并拿起了 notepad++ 并正在使用 nppexec 插件来运行 python 脚本。但是,我注意到 notepad++ 不会选择保存我的脚本的目录。例如,我将“script.py”放在“我的文档”中,但是 os.getcwd() 会打印“Program Files \ Notepad++”
有谁知道如何改变这种行为?在 Mac 中不完全习惯。
Notepad++ >nppexec >follow $(当前目录)
您可以在脚本的开头放置这样的内容:
import os os.chdir(os.path.dirname(__file__))