_splitpath, _wsplitpath 分割路径

以前分割路径的时候,总是自己写一些函数来分割,今天不小心看到这两个函数,所以赶紧记录下来:

直接上code:

[cpp]  view plain copy print ?
  1. #include   
  2. #include   
  3. using namespace std;  
  4.   
  5. int main()  
  6. {  
  7.     char *path="c:/renjingwei/ren/jing/wei/wo/张信哲--白月光.mp3";  
  8.     char drive[5];  
  9.     char dir[100];  
  10.     char filename[100];  
  11.     char fileext[10];  
  12.     _splitpath(path,drive,dir,filename,fileext);  
  13.     cout<<"filepath: "<
  14.         <<"drive: "<
  15.         <<"dir: "<
  16.         <<"filename: "<
  17.         <<"fileext: "<
  18.     system("pause");  
  19.     return 0;  
  20. }  

你可能感兴趣的:(_splitpath, _wsplitpath 分割路径)