91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

在Linux中如何統計目錄內文件

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

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

//調用opendir和readdir函數對指定目錄進行遍歷操作
//然后打印輸出指定目錄中各種類型的文件數目
#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);   //定義一個函數
static Myfunc myfunc;
static int myftw(char *, Myfunc *);
static int dopath(Myfunc *);
static long nreg, ndir, nblk, nchr, nfifo, nslink, nsock, ntot;
//各種類型的文件數目對應的變量
char *path_alloc(int* size);

int main(int argc, char *argv[])
{
  int ret;
  if (argc != 2)
  {
     printf("請輸入正確的參數!\n");   //參數錯誤
     return 1;
  }
  ret = myftw(argv[1], myfunc);		/* does it all */
  ntot = nreg + ndir + nblk + nchr + nfifo + nslink + nsock;
  //計算文件總量
  if (ntot == 0)     //如果目錄中沒有文件則將ntot設置為1以避免除數為0
  {
    ntot = 1;	
  }
  //以下一次打印各種類型文件的數據
  printf("普通文件 = %7ld, %5.2f %%\n", nreg, nreg*100.0/ntot);
  printf("目錄文件 = %7ld, %5.2f %%\n", ndir,ndir*100.0/ntot);
  printf("塊設備文件 = %7ld, %5.2f %%\n", nblk,nblk*100.0/ntot);
  printf("字設備文件 = %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;
}
//路徑緩沖區分配函數
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		//不能獲得狀態的文件

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

static int myftw(char *pathname, Myfunc *func)
{
  int len;
  fullpath = path_alloc(&len);	//給路徑緩沖區分配一個長度
  strncpy(fullpath, pathname, len);	//復制文件名稱
  fullpath[len-1] = 0;			
  return(dopath(func));
}
//獲得文件的狀態
static int dopath(Myfunc* func)
{
  struct stat	statbuf;
  struct dirent	*dirp;
  DIR *dp;
  int ret;
  char *ptr;
  if (lstat(fullpath, &statbuf) < 0)	//獲得文件狀態失敗
  {
    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);	//指向路徑緩沖區結尾
  *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);
}

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洛川县| 海口市| 宾阳县| 陇西县| 东乡县| 贵州省| 泸州市| 余庆县| 嵊州市| 七台河市| 屏边| 江永县| 鹰潭市| 浑源县| 黄梅县| 库尔勒市| 金沙县| 呼和浩特市| 连平县| 白沙| 延吉市| 福贡县| 淳化县| 中阳县| 烟台市| 龙岩市| 平阳县| 长垣县| 广丰县| 锡林浩特市| 闸北区| 太谷县| 吴桥县| 镇雄县| 耒阳市| 依兰县| 晋城| 乐山市| 浦江县| 泰顺县| 柯坪县|