file.c 839 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #include <fcntl.h>
  2. #include <stdio.h>
  3. #include <unistd.h>
  4. int main(int argc, char** argv) {
  5. int fd1 = creat("testfile", 0600);
  6. if (fd1 < 0) {
  7. perror("creat");
  8. return 1;
  9. }
  10. write(fd1, "Hello World\n", 12);
  11. close(fd1);
  12. int fd2 = open("testfile", O_RDONLY, 0600);
  13. if (fd2 < 0) {
  14. perror("open without O_CREAT");
  15. return 1;
  16. }
  17. char buffer[20];
  18. int bytes = read(fd2, buffer, 20);
  19. if (bytes < 0) {
  20. perror("read");
  21. return 1;
  22. }
  23. buffer[11] = 0;
  24. printf("read from file: %s\n", buffer);
  25. close(fd2);
  26. unlink("testfile");
  27. int fd3 = open("testfile", O_RDWR | O_CREAT | O_EXCL, 0600);
  28. if (fd3 < 0) {
  29. perror("open with O_CREAT and O_EXCL");
  30. return 1;
  31. }
  32. close(fd3);
  33. unlink("testfile");
  34. return 0;
  35. }