c# winform加载当前bin路径
时间: 2023-10-28 15:07:49 浏览: 99
在 C# 的 WinForm 应用程序中,可以使用 `System.Windows.Forms.Application.StartupPath` 属性来获取应用程序的执行路径。
可以使用以下代码来加载当前 `bin` 路径下的文件:
```csharp
string filePath = System.IO.Path.Combine(Application.StartupPath, "filename.ext");
```
其中,`filename.ext` 是要加载的文件名。如果文件在 `bin` 目录下的子目录中,可以指定相对路径。例如:
```csharp
string filePath = System.IO.Path.Combine(Application.StartupPath, "subdirectory/filename.ext");
```
这里假设文件在 `bin` 目录下的 `subdirectory` 子目录中。
阅读全文