当我做:
FILE * fp = fopen("filename", "r");`
我如何知道文件指针 fp 指向文件或目录?因为我认为这两种情况 fp 都不会为空。我能做些什么?
环境是 UNIX。
我在附近找到了这个:
#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]);
}
}
您可以使用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;
}
在 Windows 上,调用GetFileAttributes并检查 FILE_ATTRIBUTE_DIRECTORY 属性。