1.Python importos file_name = os.path.basename(filepath)#带后缀的文件名(不含路径)file_name_NoExtension = os.path.basename(filepath).split('.')[0]#不带后缀的文件名(此方法不适用于文件名含多个点号的文件)extension_name = os.path.splitext(filepath)[-1]#后缀 2.C语言 #include<stdio.h>...
c语言基础:路径中获取文件名 #include <memory.h>//从文件件路径中获取文件名voidGetFileName(char*path,char*filename) {char*ptr =NULL; ptr= strrchr(path,'/');if(!ptr)return; memcpy(filename,ptr+1,strlen(ptr+1)); } #include<string.h>intmain() {charpaht[256]; strcpy(paht,"/home/abc...
int main(){ string s = "c:\\abc\\def\\text.txt";int xie_index = s.find_last_of('\\');// 路径中最后一个\的位置 string file_dirname = s.substr(0, xie_index + 1);string file_basename = s.substr(xie_index + 1, s.size());cout << file_dirname << endl << ...