.NET后端获取C:\Users\曾彬\Pictures\Saved Pictures\壁纸\14.jpg路径的案例
时间: 2023-11-24 10:06:29 浏览: 117
c获取路径.
在.NET后端中获取文件路径可以使用System.IO命名空间中的Path类。具体实现如下:
```csharp
string filePath = Path.Combine(@"C:\Users\曾彬\Pictures\Saved Pictures\壁纸", "14.jpg");
Console.WriteLine(filePath); // 输出:C:\Users\曾彬\Pictures\Saved Pictures\壁纸\14.jpg
```
阅读全文