用c语言写查看服务器端目录中的文件名 1.DIR *opendir(const char name);打开目录. 2.struct dirent* readdir(DIR dir);读取目录. struct dirent { ino_t d_ino; //d_ino 此目录进入点的inode ff_t d_off; //d_off 目录文件开头至此目录进入点的位移 signed short int d_reclen; //d_reclen _name 的长度, 不包含NULL 字符 unsigned char d_type; //d_type 所指的文件类型 har d_name[256];//d_name 文件名 }; 3.int closedir(DIR *dir);关闭目录.
时间: 2024-01-26 12:05:06 浏览: 98
下面是一个实现查看服务器端目录中文件名的示例代码:
```c
#include <stdio.h>
#include <dirent.h>
int main() {
DIR *dir;
struct dirent *entry;
// 打开目录
dir = opendir(".");
if (dir == NULL) {
printf("无法打开目录\n");
return 1;
}
// 读取目录中的文件名
while ((entry = readdir(dir)) != NULL) {
printf("%s\n", entry->d_name);
}
// 关闭目录
closedir(dir);
return 0;
}
```
在上面的代码中,我们使用了 `opendir` 函数打开当前目录,并使用 `readdir` 函数读取目录中的文件名,最后使用 `closedir` 函数关闭目录。其中,`struct dirent` 结构体中的 `d_name` 成员变量表示文件名。
相关问题
DIR *opendir(const char *name);举例子说明
`opendir()` 是 C 标准库函数库 `dir.h` 中的一部分,它是一个用于在指定路径下打开目录的函数,通常与文件操作相关的库如 `readdir()` 和 `closedir()` 结合使用,用于遍历目录内容。
函数原型如下:
```c
DIR *opendir(const char *name);
```
这里的 `name` 参数是要打开的目录的路径名,例如:
```c
#include <dirent.h>
#include <stdio.h>
int main() {
DIR *dp;
struct dirent *entry;
// 打开当前目录
dp = opendir(".");
if (dp == NULL) {
perror("Error opening directory");
return 1;
}
// 遍历目录中的条目
while ((entry = readdir(dp)) != NULL) {
printf("%s\n", entry->d_name); // 输出文件名或目录名
}
// 关闭目录描述符
closedir(dp);
return 0;
}
```
在这个例子中,程序会打开当前目录,并打印出其中的所有文件和子目录名称。如果 `opendir()` 返回 `NULL`,则表示无法打开目录,我们会捕获错误并退出。
1、编写shell脚本完成如下功能:.(1)显示当前登录用户名;(2)显示最近10条命令历史;(3)打印当前日期; (4)退出脚本,并置退出码为5 2、将当前目录文件msg中的内容发给当前所有的登录用户。 3.编程完成如下功能:使用 10系统调用判断指定目录中的所有文件类型,并统计各种文件类型的个 注:指定目录在程序执行时通过键盘读入;不需要写 include 涉及到的系统调用和函数有: int fstat(int fd, struct stat *buf) int stat (const char *path, struct stat *buf) int Istat (const char *path, struct stat *buf) DIR opendir (char *name) struct dirent * readdir(DIR *dir) S_ISREG、 S_ISDIR、 S_ISBLK、S_ISCHR、 S_ISSOCK、S_ISFIFO、S_ISLNK
1. 以下是实现这个shell脚本的示例代码:
```bash
#!/bin/bash
# 显示当前登录用户名
echo "当前登录用户名为: $USER"
# 显示最近10条命令历史
echo "最近10条命令历史为:"
history | tail -n 10
# 打印当前日期
echo "当前日期为: $(date)"
# 退出脚本,并置退出码为5
exit 5
```
2. 以下是将当前目录文件msg中的内容发给当前所有的登录用户的示例代码:
```bash
#!/bin/bash
# 获取当前所有登录用户的用户名
users=$(who | awk '{print $1}' | sort | uniq)
# 遍历所有用户,将msg文件的内容发送给他们
for user in $users; do
if [ -n "$(who | grep $user)" ]; then
cat msg | write $user
fi
done
```
3. 以下是使用系统调用完成指定目录中的所有文件类型统计的示例代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <dirent.h>
int main() {
char path[100];
printf("请输入指定目录路径: ");
scanf("%s", path);
DIR *dir;
struct dirent *entry;
struct stat statbuf;
int count_reg = 0, count_dir = 0, count_blk = 0, count_chr = 0, count_sock = 0, count_fifo = 0, count_lnk = 0;
if ((dir = opendir(path)) == NULL) {
perror("opendir error");
exit(1);
}
while ((entry = readdir(dir)) != NULL) {
char filename[100];
sprintf(filename, "%s/%s", path, entry->d_name);
if (lstat(filename, &statbuf) == -1) {
perror("lstat error");
exit(1);
}
if (S_ISREG(statbuf.st_mode)) {
count_reg++;
} else if (S_ISDIR(statbuf.st_mode)) {
count_dir++;
} else if (S_ISBLK(statbuf.st_mode)) {
count_blk++;
} else if (S_ISCHR(statbuf.st_mode)) {
count_chr++;
} else if (S_ISSOCK(statbuf.st_mode)) {
count_sock++;
} else if (S_ISFIFO(statbuf.st_mode)) {
count_fifo++;
} else if (S_ISLNK(statbuf.st_mode)) {
count_lnk++;
}
}
printf("普通文件个数:%d\n", count_reg);
printf("目录个数:%d\n", count_dir);
printf("块设备个数:%d\n", count_blk);
printf("字符设备个数:%d\n", count_chr);
printf("套接字个数:%d\n", count_sock);
printf("FIFO/pipe个数:%d\n", count_fifo);
printf("符号链接个数:%d\n", count_lnk);
closedir(dir);
return 0;
}
```
阅读全文