nodejs 파일 업데이트

· 2019-01-11 (금) 18:28:16 · 2690

파일 업데이트

파일 시스템 모듈에는 파일을 업데이트하는 방법이 있습니다.

  • fs.appendFile()
  • fs.writeFile()

이 fs.appendFile()메서드는 지정된 파일의 끝에 지정된 내용을 추가합니다.

 

"This is my text."를 추가하십시오. 파일 "mynewfile1.txt"의 끝까지 :

var fs = require('fs');

fs.appendFile('mynewfile1.txt', ' This is my text.', function (err) {
  if (err) throw err;
  console.log('Updated!');

 

 

이 fs.writeFile()메서드는 지정된 파일 및 내용을 바꿉니다.

 

"mynewfile3.txt"파일 내용 바꾸기 :

var fs = require('fs');

fs.writeFile('mynewfile3.txt', 'This is my text', function (err) {
  if (err) throw err;
  console.log('Replaced!');
});

});

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 19-06-24 조회 3,180
PHP 19-06-09 조회 3,794
MySQL 19-04-01 조회 4,847
jQuery 19-03-20 조회 4,236
node.js 19-02-12 조회 3,333
node.js 19-02-12 조회 3,068
node.js 19-02-12 조회 3,328
node.js 19-02-07 조회 3,291
node.js 19-02-07 조회 3,051
node.js 19-02-07 조회 3,182
node.js 19-02-04 조회 2,919
node.js 19-02-04 조회 2,908
node.js 19-02-04 조회 3,341
node.js 19-01-31 조회 2,448
node.js 19-01-31 조회 2,597
node.js 19-01-31 조회 3,091
node.js 19-01-28 조회 2,851
node.js 19-01-28 조회 2,934
node.js 19-01-28 조회 2,761
node.js 19-01-22 조회 3,104
node.js 19-01-22 조회 2,850
node.js 19-01-22 조회 3,287
node.js 19-01-16 조회 2,719
node.js
[node.js]
19-01-16 조회 2,633
node.js 19-01-16 조회 9,309
node.js 19-01-12 조회 4,369
node.js 19-01-12 조회 2,988
node.js 19-01-12 조회 3,117
node.js 19-01-11 조회 2,691
node.js 19-01-11 조회 4,008