2018年2月1日

Node js 實體檔案下載並判斷檔案是否存在

var filename = "D:\test.json";

fs.exists(filename, (exists) => {

if(exists)
{
console.log("檔案存在!");
res.download(filename);
}else{
console.log("檔案不存在!");
res.json(result);
}
});

沒有留言:

張貼留言