[NodeJS] FILE SYSYEM
2020. 1. 26. 14:59
node에서 file system 은 표준 posix 기능에 기반한 api다. 바로가기 : [ what is posix? ] node의 file system api들은 비동기함수(asynchronous)과 동기(synchronous) 함수 기반으로 되어있다. const fs = require('fs'); fs.unlink('/tmp/hello', (err) => { if (err) throw err; console.log('successfully deleted /tmp/hello'); }); 비동기 형식의 api는 해당 함수의 마지막 인자(2번째가 아니라 마지막!) 로 완료를 알리는 callback 함수를 받게 된다.(이하 완료콜백이라 하겠음.) 완료콜백은 ap..