node.js 파일 작업 팁
대체적으로 파일 작업은 다음과 같은 절차를 따릅니다.- 파일 핸들러 열기 > 파일 핸들러에 데이터 버퍼링 > 파일 쓰기nodejs 에서는 이 과정이 콜백 스타일로 작업된다는 내용만 다를 뿐 원리는 같습니다.fs.open("test.txt", 'a', 0666, function(err, fd){ fs.write(fd, "I'm an appended Hello World!\n", null, undefined, function (err, written) { console.log('bytes written: ' + written); }); }); 파일 핸들러가 생략된 형태로도 사용이 가능합니다.fs.writeFile("test.txt', "This is a hello inside a file!", functio..
더보기