Boost FileSystem Obtient le nom de fichier sans exetention à partir du chemin
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
Splendid Skylark