可能重复:
同步检查 Node.js 中是否存在文件/目录
例如,我有一个字符串“C:/dev/image.folder”,我想确定它是目录还是文件(同步)。我该怎么做?
提前致谢!
// Query the entry
stats = fs.lstatSync('/the/path');
// Is it a directory?
if (stats.isDirectory()) {
// Yes it is
}
在此处查看 TJ Crowder 的答案:同步检查 Node.js 中是否存在文件/目录