예제 소스 썸네일형 리스트형 [2009/5/24] 예제소스(low_open.c, low_read.c, fd.seri.c) /* low_open.c */ #include #include #include #include #include void error_handling(char *message); int main(void) { int fildes; char buf[] = "Let's go!\n"; /* data.txt라는 이름의 파일 생성 */ fildes = open("data.txt", O_CREAT|O_WRONLY|O_TRUNC); if(fildes == -1) error_handling("open() error!"); printf("생성 된 파일의 파일 디스크립터는 %d 입니다. \n", fildes); /* 생성한 파일에 buf의 내용 전달 */ if(write(fildes, buf sizeof(buf)) == -1.. 더보기 이전 1 다음