C#如何访问在解决方案资源管理器中创建的文件夹
本文关键字:资源管理器 解决方案 创建 文件夹 何访问 访问 | 更新日期: 2023-09-27 18:00:20
如何调用或使用在解决方案浏览器中创建的这些文件
我现在使用的代码是:
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo()
{
FileName = path + "''Console''Hallo''SWIR''Dump.exe",//Path is a string that is my current path this is my exe's launch piont
UseShellExecute = true,
Verb ="open"
});
我正在尝试从我的解决方案浏览器中使用它们,任何帮助都将不胜感激
如果您想获得当前执行程序集的位置,我建议您使用AppDomain.CurrentDomain.BaseDirectory
获取应用程序文件夹路径的最佳方式