当我这样做时:
FILE * fp = fopen("filename", "r");`
我怎么知道文件指针fp指向文件或目录?因为我认为两种情况下fp都不会为空。我能做什么?
环境是UNIX。
答案 0 :(得分:3)
我发现附近有:
#include <stdio.h>
#include <errno.h>
#include <sys/stat.h>
int main (int argc, char *argv[]) {
int status;
struct stat st_buf;
status = stat ("your path", &st_buf);
if (status != 0) {
printf ("Error, errno = %d\n", errno);
return 1;
}
// Tell us what it is then exit.
if (S_ISREG (st_buf.st_mode)) {
printf ("%s is a regular file.\n", argv[1]);
}
if (S_ISDIR (st_buf.st_mode)) {
printf ("%s is a directory.\n", argv[1]);
}
}
答案 1 :(得分:1)
您可以使用fileno()
获取已打开文件的文件描述符,然后在文件描述符上使用fstat()
以返回struct stat
。
它的成员st_mode
包含该文件的信息。
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
int main()
{
FILE * pf = fopen("filename", "r");
if (NULL == pf)
{
perror("fopen() failed");
exit(1);
}
{
int fd = fileno(pf);
struct stat ss = {0};
if (-1 == fstat(fd, &ss))
{
perror("fstat() failed");
exit(1);
}
if (S_ISREG (ss.st_mode))
{
printf ("Is's a file.\n");
}
else if (S_ISDIR (ss.st_mode))
{
printf ("It's a directory.\n");
}
}
return 0;
}
答案 2 :(得分:0)
在Windows上,调用GetFileAttributes,然后检查FILE_ATTRIBUTE_DIRECTORY属性。