전체 글
-
리눅스 시스템 프로그래밍 기본 명령어 모음C,C++ & Linux 2020. 4. 6. 20:52
파일 입출력 open #include #include #include int open(const char* pathname, int oflag); int open(const char* pathname, int oflag, mode_t mode); // 리턴값 : 성공 시 파일 디스크립터, 에러 시 -1 (errno 설정) close #include int close(int fd); // 리턴 값 : 성공 시 0, 에러 시 -1 (errno 설정) creat #include #include #include int creat(const char* pathname, mode_t mode); // 리턴 값 : 성공 시 0, 에러 시 -1 (errno 설정) lseek #include #include off_t ..