文件操作 - download-to-file.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/needle/examples/download-to-file.js
编辑文件内容
var fs = require('fs'), needle = require('./..'), path = require('path'); var url = process.argv[2] || 'https://upload.wikimedia.org/wikipedia/commons/a/af/Tux.png'; var file = path.basename(url); console.log('Downloading ' + file); needle.get(url, { output: file, follow: 3 }, function(err, resp, data){ console.log('File saved: ' + process.cwd() + '/' + file); var size = fs.statSync(file).size; if (size == resp.bytes) console.log(resp.bytes + ' bytes written to file.'); else throw new Error('File size mismatch: ' + size + ' != ' + resp.bytes); });
修改文件时间
将文件时间修改为当前时间的前一年
删除文件