Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8829

node.jsでファイルをtouchする

$
0
0
linuxのtouchコマンドと同じ機能を実行したい場合、node.jsからどうすれば良いかを調べた結果をメモする。 これで行ける。 import * as fs from 'fs'; export touchFileSync = (fileName) => { try { const time = new Date(); fs.utimesSync(fileName, time, time); } catch { fs.closeSync(fs.openSync(fileName, 'w')); } };

Viewing all articles
Browse latest Browse all 8829

Trending Articles