码迷,mamicode.com
首页 > 编程语言 > 详细

c++从文件路径获取目录

时间:2019-11-27 16:26:08      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:length   ash   turn   end   文件   str   pac   direct   路径   

 

#include<iostream>
#include<string>
using namespace std;

int main()
{
    //string filePath = "D:\\statistics_chengqichao\\qcc\\biaoxiandianyun.xyz";
    //int nPos = filePath.rfind(‘\\‘);
    //string prefixPath = filePath.substr(0, filePath.length() - nPos-1);
    //cout << prefixPath << endl;





    string filename = "C:\\MyDirectory\\MyFile.txt";
    

    string directory;
    const size_t last_slash_idx = filename.rfind(\\);
    if (std::string::npos != last_slash_idx)
    {
        directory = filename.substr(0, last_slash_idx);

    }
    cout << directory << endl;
    system("pause");
    return 0;
}

 

c++从文件路径获取目录

标签:length   ash   turn   end   文件   str   pac   direct   路径   

原文地址:https://www.cnblogs.com/yibeimingyue/p/11942963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!