c#读取图片的文件名
时间: 2023-12-05 22:39:46 浏览: 136
【案例真实完整代码-已经验证测试(完全实用)】1.C#批量优化处理文件名称提高曝光度的小工具,个人自创,放心下载使用
以下是使用C#读取图片文件名的方法:
```csharp
string imagePath = @"C:\Users\username\Pictures\example.jpg";
string fileName = System.IO.Path.GetFileName(imagePath);Console.WriteLine("Image file name: " + fileName); // 输出:Image file name: example.jpg
```
以上代码中,我们使用`System.IO.Path.GetFileName()`方法获取图片文件的文件名,然后将其输出到控制台。
阅读全文