みんなのちからになりたい

コピペでブログラムつくっていきたい

2012-01-19から1日間の記事一覧

nodejsでファイルを移動する

http://stackoverflow.com/questions/8579055/how-i-move-files-on-node-js It's worth noting that you only have to do this when moving files across volumes. Otherwise, you can just use fs.rename() (within a volume renaming a file and moving it…

nodejsでファイルを削除する

http://nodejs.jp/nodejs.org_ja/api/fs.html#fs.unlink var fs = require('fs'); fs.unlink('/tmp/hello', function (err) { if (err) throw err; console.log('successfully deleted /tmp/hello'); }); windowsっこだからdeleteかremoveかと思ったらunlink…