在Linux中,readdir()
函数用于读取目录句柄中的条目
要处理符号链接,您可以使用以下方法:
lstat()
或stat()
函数获取符号链接的目标路径。这两个函数都可以提供关于文件或目录的详细信息,包括符号链接指向的目标。示例代码:
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
if (argc != 2) {
printf("Usage: %s <directory>\n", argv[0]);
exit(EXIT_FAILURE);
}
struct stat statbuf;
if (lstat(argv[1], &statbuf) == -1) {
perror("lstat");
exit(EXIT_FAILURE);
}
if (S_ISLNK(statbuf.st_mode)) {
char target[PATH_MAX];
ssize_t len = readlink(argv[1], target, sizeof(target) - 1);
if (len == -1) {
perror("readlink");
exit(EXIT_FAILURE);
}
target[len] = '\0';
printf("Symbolic link: %s -> %s\n", argv[1], target);
} else {
printf("Not a symbolic link: %s\n", argv[1]);
}
return 0;
}
这个程序接受一个目录作为参数,然后使用lstat()
函数获取该目录的元数据。如果它是一个符号链接,程序将使用readlink()
函数读取并打印符号链接的目标路径。否则,它将输出该文件或目录不是符号链接。
示例代码:
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <sys/stat.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
if (argc != 2) {
printf("Usage: %s <directory>\n", argv[0]);
exit(EXIT_FAILURE);
}
DIR *dir = opendir(argv[1]);
if (dir == NULL) {
perror("opendir");
exit(EXIT_FAILURE);
}
struct dirent *entry;
while ((entry = readdir(dir)) != NULL) {
struct stat statbuf;
if (lstat(entry->d_name, &statbuf) == -1) {
perror("lstat");
continue;
}
if (S_ISLNK(statbuf.st_mode)) {
char target[PATH_MAX];
ssize_t len = readlink(entry->d_name, target, sizeof(target) - 1);
if (len == -1) {
perror("readlink");
continue;
}
target[len] = '\0';
printf("Symbolic link: %s -> %s\n", entry->d_name, target);
} else {
printf("%s\n", entry->d_name);
}
}
closedir(dir);
return 0;
}
这个程序接受一个目录作为参数,然后使用opendir()
函数打开该目录。接下来,它遍历目录中的每个条目,并使用lstat()
函数获取条目的元数据。如果它是一个符号链接,程序将使用readlink()
函数读取并打印符号链接的目标路径。否则,它将输出该文件或目录的名称。