欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++:获取文件名(不带路径,不带扩展名)

程序员文章站 2022-06-12 08:27:01
...

经常要用到,记录一下:

/// <summary>
/// 获取不带路径的文件名
/// </summary>
/// <param name="fullName">带路径的文件名</param>
/// <returns>不带路径的文件名</returns>
string GetFileNameWithoutPath(string fullName)
{
    size_t position = fullName.find_last_of('\\') + 1;
    return fullName.substr(position , fullName.length() - position );
}

/// <summary>
/// 获取不带扩展名的文件名
/// </summary>
/// <param name="fullName">带路径的文件名</param>
/// <returns>不带扩展名的文件名</returns>
string GetFileNameWithoutExtension(string fullName)
{
    string fileName = GetFileNameWithoutPath(fullName);
    return fileName.substr(0, fileName.rfind('.'));
}
相关标签: C++常用函数 c++