如何检查文件(由完整路径给出)是不是存在?节点js [重复]
Posted
技术标签:
【中文标题】如何检查文件(由完整路径给出)是不是存在?节点js [重复]【英文标题】:How to check if a file (given by full path) exists? node js [duplicate]如何检查文件(由完整路径给出)是否存在?节点js [重复] 【发布时间】:2012-02-09 03:00:40 【问题描述】:我以为我可以使用“fs”模块来做到这一点,但我找不到合适的功能。
【问题讨论】:
我相信这里已经回答了这个问题:***.com/questions/4482686/… 谢谢。我不知道我是怎么错过的.. 【参考方案1】:fs = require('fs');
fs.exists(path, function( exists )
console.log( ( exists ? "File is there" : "File is not there" ) );
);
【讨论】:
fs = require('fs'); console.log(fs.statSync(path).isFile()); // 对或错【参考方案2】:请参阅documentation for the fs
module,尤其是“stat
”函数系列(stat、fstat、lstat、statSync、fstatSync、lstatSync)。
【讨论】:
以上是关于如何检查文件(由完整路径给出)是不是存在?节点js [重复]的主要内容,如果未能解决你的问题,请参考以下文章