gpt4 book ai didi

c++ - 如何从 C++ 中的路径中提取文件名和扩展名

转载 作者:IT老高 更新时间:2023-10-28 12:14:41 33 4
gpt4 key购买 nike

我有一个存储在 .log 中的文件列表,语法如下:

c:\foto\foto2003\shadow.gif
D:\etc\mom.jpg

我想从这些文件中提取名称和扩展名。你能举一个简单的例子吗?

最佳答案

要提取不带扩展名的文件名,请使用 boost::filesystem::path::stem 而不是丑陋的 std::string::find_last_of(".")

boost::filesystem::path p("c:/dir/dir/file.ext");
std::cout << "filename and extension : " << p.filename() << std::endl; // file.ext
std::cout << "filename only : " << p.stem() << std::endl; // file

关于c++ - 如何从 C++ 中的路径中提取文件名和扩展名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4430780/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com