1

下面是我的代码:

#include <iostream> 
#include <fcntl.h>
#include <unistd.h>
using namespace std; 

int main()
{

int filedesc = open("testfile.txt", O_RDWR | (O_APPEND |O_CREAT) ,S_IRWXO);

    if (filedesc < 0) {
    cout<<"unable to open file";
        return -1;
    }

    if (write(filedesc, "This will be output to testfile.txt", 36) != -1) {
        cout<<"writing";
        close( filedesc );
    }

    return 0;
return 0;

}

如果我在第二次以上运行相同,则 o/p 是“无法打开文件”。难道我做错了什么?

4

1 回答 1

5

这是一个权限问题

尝试改变

S_IRWXO 

 S_IRWXU

它会正常工作

S_IRWXO

其他人读取、写入、执行/搜索

参考http://pubs.opengroup.org/onlinepubs/7908799/xsh/sysstat.h.html

于 2012-10-05T06:55:33.110 回答