溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

在Linux中如何統(tǒng)計目錄內(nèi)文件

發(fā)布時間:2021-10-18 15:09:31 來源:億速云 閱讀:125 作者:小新 欄目:編程語言

這篇文章主要介紹了在Linux中如何統(tǒng)計目錄內(nèi)文件,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

//調(diào)用opendir和readdir函數(shù)對指定目錄進行遍歷操作
//然后打印輸出指定目錄中各種類型的文件數(shù)目
#include <stdio.h>
#include <fcntl.h>
#include <dirent.h>
#include <limits.h>
#include <sys/stat.h>
#include <string.h>
#include <stdlib.h>

typedef	int Myfunc(const char *, const struct stat *, int);   //定義一個函數(shù)
static Myfunc myfunc;
static int myftw(char *, Myfunc *);
static int dopath(Myfunc *);
static long nreg, ndir, nblk, nchr, nfifo, nslink, nsock, ntot;
//各種類型的文件數(shù)目對應(yīng)的變量
char *path_alloc(int* size);

int main(int argc, char *argv[])
{
  int ret;
  if (argc != 2)
  {
     printf("請輸入正確的參數(shù)!\n");   //參數(shù)錯誤
     return 1;
  }
  ret = myftw(argv[1], myfunc);		/* does it all */
  ntot = nreg + ndir + nblk + nchr + nfifo + nslink + nsock;
  //計算文件總量
  if (ntot == 0)     //如果目錄中沒有文件則將ntot設(shè)置為1以避免除數(shù)為0
  {
    ntot = 1;	
  }
  //以下一次打印各種類型文件的數(shù)據(jù)
  printf("普通文件 = %7ld, %5.2f %%\n", nreg, nreg*100.0/ntot);
  printf("目錄文件 = %7ld, %5.2f %%\n", ndir,ndir*100.0/ntot);
  printf("塊設(shè)備文件 = %7ld, %5.2f %%\n", nblk,nblk*100.0/ntot);
  printf("字設(shè)備文件 = %7ld, %5.2f %%\n", nchr, nchr*100.0/ntot);
  printf("FIFOs = %7ld, %5.2f %%\n", nfifo,nfifo*100.0/ntot);
  printf("符號鏈接文件 = %7ld, %5.2f %%\n", nslink, nslink*100.0/ntot);
  printf("套接字文件 = %7ld, %5.2f %%\n", nsock,nsock*100.0/ntot);
  return ret;
}
//路徑緩沖區(qū)分配函數(shù)
char *path_alloc(int* size)
{
  char *p = NULL;
  if(!size)
  { 
    return NULL;
  }
  p = malloc(256);
  if(p)
  {
    *size = 256;
  }
  else
  {
    *size = 0;
  }
  return p;
}

#define	FTW_F	1		//
#define	FTW_D	2		//目錄
#define	FTW_DNR	3		//不能讀的目錄
#define	FTW_NS	4		//不能獲得狀態(tài)的文件

static char	*fullpath;	//存放每個文件完整路徑

static int myftw(char *pathname, Myfunc *func)
{
  int len;
  fullpath = path_alloc(&len);	//給路徑緩沖區(qū)分配一個長度
  strncpy(fullpath, pathname, len);	//復(fù)制文件名稱
  fullpath[len-1] = 0;			
  return(dopath(func));
}
//獲得文件的狀態(tài)
static int dopath(Myfunc* func)
{
  struct stat	statbuf;
  struct dirent	*dirp;
  DIR *dp;
  int ret;
  char *ptr;
  if (lstat(fullpath, &statbuf) < 0)	//獲得文件狀態(tài)失敗
  {
    return(func(fullpath, &statbuf, FTW_NS));
  }
  if (S_ISDIR(statbuf.st_mode) == 0)	//如果不是目錄
  {
    return(func(fullpath, &statbuf, FTW_F));
  }
  if ((ret = func(fullpath, &statbuf, FTW_D)) != 0)
  {
    return(ret);
  }
  ptr = fullpath + strlen(fullpath);	//指向路徑緩沖區(qū)結(jié)尾
  *ptr++ = '/';
  *ptr = 0;
  if ((dp = opendir(fullpath)) == NULL)	//如果不能讀目錄
  {
    return(func(fullpath, &statbuf, FTW_DNR));
  }
  while ((dirp = readdir(dp)) != NULL) {
		if (strcmp(dirp->d_name, ".") == 0  ||
		    strcmp(dirp->d_name, "..") == 0)
				continue;		/* ignore dot and dot-dot */
		strcpy(ptr, dirp->d_name);	/* append name after slash */
		if ((ret = dopath(func)) != 0)		/* recursive */
			break;	/* time to leave */
	}
	ptr[-1] = 0;	/* erase everything from slash onwards */

	if (closedir(dp) < 0)
	{
		printf("can't close directory %s\n", fullpath);
    }
	return(ret);
}

static int myfunc(const char *pathname, const struct stat *statptr, int type)
{
	switch (type) {
	case FTW_F:
		switch (statptr->st_mode & S_IFMT) {
		case S_IFREG:	nreg++;		break;
		case S_IFBLK:	nblk++;		break;
		case S_IFCHR:	nchr++;		break;
		case S_IFIFO:	nfifo++;	break;
		case S_IFLNK:	nslink++;	break;
		case S_IFSOCK:	nsock++;	break;
		case S_IFDIR:
			printf("for S_IFDIR for %s\n", pathname);
		}
		break;

	case FTW_D:
		ndir++;
		break;
	case FTW_DNR:
		printf("can't read directory %s\n", pathname);
		break;
	case FTW_NS:
		printf("stat error for %s\n", pathname);
		break;
	default:
		printf("unknown type %d for pathname %s\n", type, pathname);
	}
	return(0);
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“在Linux中如何統(tǒng)計目錄內(nèi)文件”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI