第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

求教關(guān)于linux下統(tǒng)計(jì)當(dāng)前目錄下的子目錄數(shù)(當(dāng)前目錄)與其各子目錄下的文件數(shù)?具體如題!

求教關(guān)于linux下統(tǒng)計(jì)當(dāng)前目錄下的子目錄數(shù)(當(dāng)前目錄)與其各子目錄下的文件數(shù)?具體如題!

慕斯王 2021-06-21 18:14:13
問題如題有目錄結(jié)構(gòu):./a/aa/aaa/1.txt./a/aa/aaa/2.txt./a/aa/aaa/3.txt./a/aa/bbb/1.txt./a/aa/bbb/2.txt./a/aa/bbb/3.txt./a/aa/ccc/1.txt./a/aa/ccc/2.txt./a/aa/ccc/3.txt我用的實(shí)現(xiàn)while循環(huán)下加嵌套函數(shù)。按上面目錄結(jié)構(gòu)輸出正確結(jié)果應(yīng)該為:文件數(shù)9個 目錄數(shù)6可我的程序結(jié)果為:文件數(shù)3個 目錄數(shù)4個(bbb ccc2個目錄及其下面的6個文件未統(tǒng)計(jì)完整代碼如下:#include <iostream>using namespace std;#include <sys/types.h>#include <dirent.h>#include <unistd.h>#include <sys/stat.h>#include <string.h>int Fn=0;int Dn=0;DIR* p_Dir = NULL;int count(char *);int main(int argc,char* argv[]){if(argc!=2){cout <<"Usage:<filename> DirName"<<endl;return -1;}p_Dir = opendir(argv[1]);if(NULL==p_Dir){cout <<"Can't find the Dir:"<<argv[1]<<endl;return -2;}else{closedir(p_Dir);}p_Dir=NULL;count(argv[1]);//函授調(diào)用cout <<"The director include: "<<Fn<<" files and "<<Dn<<" directors."<<endl;}//函數(shù)定義int count(char* s_dir){struct stat buf;struct dirent* p_Dirent = NULL;if(stat(s_dir,&buf)<0){cout << "stat error\n";return -2;}if(S_ISDIR(buf.st_mode)){if(NULL==(p_Dir = opendir(s_dir))){cout << "Open "<<s_dir<<" director failure."<<endl;return -1;}while(p_Dirent = readdir(p_Dir)){if('.'==(p_Dirent->d_name[0])) continue; char str[256];memset(str,0,256);strcpy(str,s_dir);strcat(str,"/");strcat(str,p_Dirent->d_name);cout <<"found dir: " <<str<<endl;count(str); //嵌套調(diào)用}Dn++;return 0;}else{Fn++;return 0;}}
查看完整描述

2 回答

?
長風(fēng)秋雁

TA貢獻(xiàn)1757條經(jīng)驗(yàn) 獲得超7個贊

顯然,你的程序在遞歸中未能如愿的返回,只能統(tǒng)計(jì)深度最深的一個目錄,檢查并修改之。

查看完整回答
反對 回復(fù) 2021-06-27
  • 2 回答
  • 0 關(guān)注
  • 537 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號