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("."));
上一篇: Nodejs读取文件后缀名