您好,感谢您的阅读。
我正在尝试在C语言中构建一个程序,该程序在Linux Shell中运行,它接受一个参数(目录)并列出该目录中的所有文件,以及它们是否是常规文件,链接文件或目录。我需要使用OpenDir()/ ReadDir()和stat。到目前为止,这是我的代码:(我有点卡住)此刻它只读取文件并输出类型。如何允许我的程序读取目录中的所有文件,并输出它们的名称以及它们的文件类型?
#define _BSD_SOURCE
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include <time.h>
int
main(int argc, char *argv[])
{
struct stat sb;
/*
if (argc != 2) {
fprintf(stderr, "Usage: %s <pathname>\n", argv[0]);
exit(EXIT_FAILURE);
}*/
if (stat(argv[1], &sb) == -1) {
perror("stat");
exit(EXIT_FAILURE);
}
switch (sb.st_mode & S_IFMT) {
case S_IFBLK: printf("block device\n"); break;
case S_IFCHR: printf("character device\n"); break;
case S_IFDIR: printf("dir "); break;
case S_IFIFO: printf("FIFO/pipe\n"); break;
case S_IFLNK: printf("lnk "); break;
case S_IFREG: printf("reg "); break;
case S_IFSOCK: printf("socket\n"); break;
default: printf("unknown?\n"); break;
}
printf("%s\n", argv[1]);
exit(EXIT_SUCCESS);
}
所以我重新编写了所有内容,现在我收到一些关于它是否是链接reg或dir文件的输出,但是我只收到一个文件是一个目录,即使它显然不是(文本文件或。 c文件等)。这是新代码:
#define _BSD_SOURCE
#include <stdio.h>
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
void typeOfFile(struct stat info){
if (S_ISREG(info.st_mode)) {
printf("reg");
}
if (S_ISDIR(info.st_mode)) {
printf("dir");
}
if (S_ISLNK(info.st_mode)) {
printf("lnk");
}
}
int main(int argc, char *argv[]) {
DIR *dirp;
struct dirent* dent;
struct stat info;
typeOfFile(info);
//If no args
if(argc == 1){
argv[1] = ".";
dirp=opendir(argv[1]); // specify directory here: "." is the "current directory"
do {
dent = readdir(dirp);
if (dent)
{
//////////////////////////////////////////////////////////////////////////
if (stat(argv[1], &info) == -1) {
perror("stat");
exit(EXIT_FAILURE);
}
switch (info.st_mode & S_IFMT) {
case S_IFBLK: printf("block device\n"); break;
case S_IFCHR: printf("character device\n"); break;
case S_IFDIR: printf("dir "); break;
case S_IFIFO: printf("FIFO/pipe\n"); break;
case S_IFLNK: printf("lnk "); break;
case S_IFREG: printf("reg "); break;
case S_IFSOCK: printf("socket\n"); break;
default: printf("unknown?\n"); break;
}
//////////////////////////////////////////////////////////////////////////
printf("%s \n", dent->d_name);
}
} while (dent);
closedir(dirp);
}
////////////////////////////////////////////////////////////////////////////////////////////////
//If specified directory
if(argc > 1){
dirp=opendir(argv[1]); // specify directory here: "." is the "current directory"
do {
dent = readdir(dirp);
if (dent)
{
/////////////////////////////////////////////////////////////////////////////////////
if (stat(argv[1], &info) == -1) {
perror("stat");
exit(EXIT_FAILURE);
}
switch (info.st_mode & S_IFMT) {
case S_IFBLK: printf("block device\n"); break;
case S_IFCHR: printf("character device\n"); break;
case S_IFDIR: printf("dir "); break;
case S_IFIFO: printf("FIFO/pipe\n"); break;
case S_IFLNK: printf("lnk "); break;
case S_IFREG: printf("reg "); break;
case S_IFSOCK: printf("socket\n"); break;
default: printf("unknown?\n"); break;
}
//////////////////////////////////////////////////////////////////////////////////////
// printf("%s\n", argv[1]);
printf("%s \n", dent->d_name);
}
} while (dent);
closedir(dirp);
}
return 0;
}
答案 0 :(得分:1)
您的代码正在调用argv[1]
始终为'。'的统计信息。 - 因此所有项目都被错误地识别为目录。
dent->d_name
(文件名)是正确的参数。
if (stat(dent->d_name, &info) == -1) {