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

3.python 获取文件名,去除后缀名

程序员文章站 2022-04-17 11:41:49
...
# @File  : getfile.py
# @Author: Wang Zhimin
# @Date  : 2019/10/11

string path = "D:/car2.mp4";
int pos = path.find_last_of('/');
string s(path.substr(pos + 1));
string name = s.substr(0, s.rfind("."));