1.獲取當前工做目錄 #include <unistd.h> 1.char *getcwd(char *buf,size_t size); 2. 3.其中,buf爲緩衝區地址,size爲給出的最大路徑名長度。若是當前工做目錄的路徑名長度大於給定的長度,則返回NULL並置errno爲ERANGE。函數調用成功時,返回指向路徑名的指針;不然返回NULL 4. 5.例: 6.char *name = new char[256]; 7.if(getcwd(name,255)!=NULL) 8. cout<<"current dir is: "<<name<<endl; 9.delete [] name; 2. stat結構體 1.#include <sys/stat.h> 2. 3.struct stat 4.{ 5. mode_t st_mode; //文件類型和權限信息 6. ino_t st_ino; //i結點標識 7. dev_t st_dev; //device number (file system) 8. dev_t st_rdev; //device number for special files 9. nlink_t st_nlink; //符號連接數 10. uid_t st_uid; //用戶ID 11. gid_t st_gid; //組ID 12. off_t st_size; //size in bytes,for regular files 13. time_t st_st_atime; //最後一次訪問的時間 14. time_t st_mtime; //文件內容最後一次被更改的時間 15. time_t st_ctime; //文件結構最後一次被更改的時間 16. blksize_t st_blksize; //best I/O block size 17. blkcnt_t st_blocks; //number of disk blocks allocated 18.} 1.獲取文件stat結構體信息的三個函數 2. 3.#include <sys/types.h> 4.#include <sys/stat.h> 5.#include <unistd.h> 6. 7.int stat(const char *path, struct stat *buf); 8.int fstat(int fieldes, struct stat *buf); 9.int lstat(const char *path, struct stat *buf); 10. 11.成功則返回0,不然返回-1. 12. 13.其中,fstat的第一個參數int fields爲文件的描述符。 14.fstat區別於另外兩個系統調用的地方在於,fstat系統調用接受的是 一個「文件描述符」,而另外兩個則直接接受「文件全路徑」。文件描述符是須要咱們用open系統調用後才能獲得的,而文件全路徑直接寫就能夠了。 15. 16.stat與lstat的區別: 17. 18.當文件是一個符號連接時,lstat返回的是該符號連接自己的信息;而stat返回的是該連接指向的文件的信息。能夠這樣記,lstat比stat多了一個l,所以它是有本事處理符號連接文件(link)自己的。 3.dirent結構體,能夠只關注d_name字段 1.#include <dirent.h> 2. 3.struct dirent 4.{ 5. long d_ino; /* inode number 索引節點號 */ 6. off_t d_off; /* offset to this dirent 在目錄文件中的偏移 */ 7. unsigned short d_reclen; /* length of this d_name 文件名長 */ 8. unsigned char d_type; /* the type of d_name 文件類型 */ 9. char d_name [NAME_MAX 1]; /* file name (null-terminated) 文件名,最長255字符 */ 10.} 4.讀取目錄的操做 1.//可能用到的函數 2. 3.#include <sys/types.h> 4.#include <dirent.h> 5. 6.DIR *opendir(const char *dirname); 7.struct dirent *readir(DIR *dirp); 8.void rewinddir(DIR *dirp); 9.int closedir(DIR *dirp); 10. 11. 12.//一個完整的遞歸遍歷目錄下子目錄及文件的函數 13. 14.#include <unistd.h> 15.#include <stdio.h> 16.#include <dirent.h> 17.#include <string.h> 18.#include <stdlib.h> 19. 20.void printdir(char *dir, int depth) 21.{ 22. DIR *dp; 23. struct direct *entry; 24. struct stat statbuf; 25. 26. if( (dp = opendir(dir))!=NULL ) 27. { 28. chdir(dir); //changedir,進入dir目錄 29. while( (entry = readdir(dp))!=NULL ) 30. { 31. lstat(entry->d_name,&statbuf); 32. 33. if( S_ISDIR(statbuf.st_mode) ) 34. { 35. if(strcmp(".",entry->d_name)==0 || strcmp("..",entry->d_name) 36. continue; 37. 38. printf("%*s%s/\n",depth," ",entry->d_name); 39. printdir(entry->d_name,depth+4); 40. } 41. else 42. printf("%*s%s\n",depth," ",entry->d_name); 43. } 44. 45. chdir(".."); 46. closedir(dp); 47. } 48. else 49. { 50. fprintf(stderr,"cannot open directory: %s\n",dir); 51. return; 52. } 53.} 54. 55.int main() 56.{ 57. printf("Directory scan of /home:\n"); 58. printdir("/home",0); 59. printf("Success!\n"); 60. 61. exit(0); 62.} 5.注意:判斷文件是目錄文件仍是普通文件有兩種方式 1.struct dirent *entry; 2.struct stat st; 3. 4.entry = opendir(dir); 5.lstat(entry->d_name,&st); 6.S_ISDIR(st.st_mode); //是目錄文件則函數返回true 7.S_ISREG(st.st_mode); //是普通文件則函數返回true 8. 9.//S_ISDIR和S_ISREG均爲宏定義,可參見sys/stat.h. 10.//或者用如下方式 11.(st.st_mode & S_IFMT)==S_IFDIR //目錄文件爲true 12.(st.st_mode & S_IFMT)==S_IFREG //普通文件爲true 13.//其中S_IFMT在sys/stat.h中被定義爲八進制數170000,經過與st_mode進行位的與操做可得類型,另有S_IFBLK、S_IFCHR、S_IFIFO類型
轉載原文:http://blog.chinaunix.net/uid-25829053-id-2853278.htmlhtml