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.
我试图在单击时打开一个 exe 文件,它将位于文件路径的子文件夹中,我不想放入 c:\folder 因为每个用户的文件安装会有所不同,我想使用文件路径+该文件路径中的另一个文件夹+“file.exe”
有任何想法吗?
您可以使用此代码简单
static void Main(string[] args) { Process.Start(<"your file path"); }
例如,如果你想运行 notepath++ 那么
你的路径将是=@"C:\Program Files (x86)\Notepad++\Notepad++.exe