1 #include "stdafx.h"
 2 #include <string>
 3 #include <iostream>
 4 using namespace std;
 5 
 6 int _tmain(int argc, _TCHAR* argv[])
 7 {
 8     string file_path = "d:/karen/love/you";
 9     int pathsize = file_path.size();//元素个数
10     string full_path;
11     if(file_path.find_last_of("/")!=file_path.size()-1)
12         full_path  = file_path.append("/");//串接尾部
13     cout<<"full_path:"<<full_path<<endl;
14     cout<<"pathsize:"<<pathsize<<endl;
15     return 0;
16 }

相关文章:

  • 2022-12-23
  • 2021-10-07
  • 2021-05-22
  • 2021-12-28
  • 2022-12-23
  • 2021-12-12
  • 2022-12-23
猜你喜欢
  • 2021-07-25
  • 2022-12-23
  • 2021-09-26
  • 2021-05-28
  • 2021-08-21
  • 2021-12-18
  • 2021-11-03
相关资源
相似解决方案