F:\code\datas\18650\bottomdata\al-NG\240429161825-010-00008-NG.jpg c++ 从路径种提取文件名
时间: 2024-04-30 18:16:32 浏览: 243
c++读取文件中的文件名
在C++中,可以使用以下方法从文件路径中提取文件名:
```cpp
#include <iostream>
#include <string>
#include <filesystem>
int main() {
std::string filePath = "F:\\code\\datas\\18650\\bottomdata\\al-NG\\240429161825-010-00008-NG.jpg";
// 使用std::filesystem::path来处理文件路径
std::filesystem::path path(filePath);
// 使用path的filename()函数获取文件名
std::string fileName = path.filename().string();
std::cout << "文件名:" << fileName << std::endl;
return 0;
}
```
输出结果为:
```
文件名:240429161825-010-00008-NG.jpg
```
阅读全文