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.
我正在编写一个从文件夹的上下文菜单中调用的程序,该程序应该在该文件夹中创建一个文件夹。如何获取该文件夹的路径,而不是可执行文件所在的目录?
使用Environment.CurrentDirectory或AppDomain.CurrentDomain.BaseDirectory获取当前工作目录的路径。
Environment.CurrentDirectory
AppDomain.CurrentDomain.BaseDirectory
它在 args 中。我的问题是从快捷方式调用应用程序会将当前目录留在可执行路径中。相反,我只会让应用程序在路径上可用,然后将传入正确的路径。