阅读量:0
在 C++ 中,truncate()
函数用于将文件大小截断为指定的长度
- 包含必要的头文件:
#include<iostream> #include <cerrno> #include <cstring> #include <unistd.h>
- 使用
truncate()
函数并检查返回值。如果返回值为 -1,则表示发生了错误,此时可以使用errno
和strerror()
函数来获取错误信息。
int main() { const char *file_path = "example.txt"; off_t new_length = 10; // 新的文件长度 int result = truncate(file_path, new_length); if (result == -1) { // 发生错误,打印错误信息 std::cerr << "Error: "<< std::strerror(errno)<< std::endl; return 1; } else { std::cout << "File truncated successfully."<< std::endl; } return 0; }
在这个示例中,我们尝试将名为 example.txt
的文件大小截断为 10 字节。如果操作成功,程序将输出 “File truncated successfully.”,否则将输出相应的错误信息。
注意:在实际编程中,请确保正确处理文件路径和文件操作,以避免潜在的安全风险。同时,也要注意检查文件是否存在、是否有足够的权限等。