我从这里以及从这里ftruncate
查看了文档。在 IBM 链接的情况下,我相应地实现了我的链接,但它给了我错误。这是代码:ftruncate
Invalid Arguments
char const *path = "mozunit.txt";
int file_ = open(path, O_RDONLY, 0600);
int ftrunc_ = ftruncate(file_, 1);
cout<<strerror(errno)<<endl;
为什么?我尝试更改第二个参数,ftruncate
但无济于事。