Linux文件系統編程 系統調用 打開讀取寫入文件

#include <stdio.h> #include <errno.h> int main() { close(1); // 打開一個文件 int fd = open ("test.txt", O_RDWR | O_CREAT, S_IRUSR | S_IWUSR | S_IXUSR); //int fd = open ("test.txt", O_RDONLY); if (fd == -1)
相關文章
相關標籤/搜索