在C++中,stat
函数用于获取文件或目录的元信息
#include <iostream>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
int main() {
struct stat file_stats;
int result = stat("example.txt", &file_stats);
if (result == 0) {
std::cout << "File exists." << std::endl;
std::cout << "Size: " << file_stats.st_size << " bytes" << std::endl;
std::cout << "Last modified: " << ctime(&file_stats.st_mtime);
} else {
std::cerr << "Error: " << result << std::endl;
}
return 0;
}
在这个示例中,我们使用stat
函数获取名为example.txt
的文件的信息。如果文件存在,我们将输出文件的大小和最后修改时间。如果文件不存在,我们将输出错误代码。
要实现对文件的更精细控制,你可以使用以下选项:
使用stat
函数的第二个参数(struct stat *statbuf
)中的st_mode
字段来检查文件的类型和权限。例如,你可以使用S_ISREG()
宏来检查文件是否为普通文件,或者使用S_ISDIR()
宏来检查文件是否为目录。
使用stat
函数的第二个参数(struct stat *statbuf
)中的st_mtime
字段来获取文件的最后修改时间,并根据需要对其进行操作。
使用stat
函数的第二个参数(struct stat *statbuf
)中的st_size
字段来获取文件的大小,并根据需要对其进行操作。
使用stat
函数的第二个参数(struct stat *statbuf
)中的其他字段(如st_uid
、st_gid
等)来获取文件的用户ID、组ID等信息,并根据需要对其进行操作。
请注意,stat
函数是跨平台的,但在某些平台上可能需要包含不同的头文件或使用不同的函数名称。在使用stat
函数之前,请确保了解你所使用的平台和编译器的要求。