티스토리 뷰

728x90

fs.unlink(path, callback)

링크, 혹은 파일 삭제하는 함수

History

Asynchronously removes a file or symbolic link. No arguments other than a possible exception are given to the completion callback.

import { unlink } from 'fs';
// Assuming that 'path/file.txt' is a regular file.
unlink('path/file.txt', (err) => {
  if (err) throw err;
  console.log('path/file.txt was deleted');
});

fs.unlink() will not work on a directory, empty or otherwise. To remove a directory, use fs.rmdir().

 

 

https://nodejs.org/api/fs.html#fs_fs_unlink_path_callback

 

File system | Node.js v16.2.0 Documentation

 

nodejs.org

 

사용 예시

fs.unlink(`data/${id}`, function(error){
	response.writeHead(302, {Location: `/`}); //파일삭제와 동시에 홈으로 이동
	response.end('success');
})
반응형

'Coding - Algo > Nodejs' 카테고리의 다른 글

[Nodejs] npm Sanitize-html 사용하기  (0) 2021.06.13
[Nodejs] path.parse 사용  (0) 2021.06.12
[Nodejs] 모듈의 형식  (0) 2021.06.12
[Nodejs] Property 사용  (0) 2021.06.09
[Nodejs] 파일 이름 바꾸기  (0) 2021.05.30