var stat = fs.lstatSync("./xx")
console.log(stat.isDirectory())
如果返回结果为true则为文件夹。
var fs = require("fs")var stat = fs.lstatSync("./xx")console.log(stat.isDirectory())如果返回结果为true则为文件夹。
IsExstsFile(yourFileURL) {var flag
var xmlhttp
if(window.XMLHttpRequest)
{
xmlhttp = new XMLHttpRequest()//其他浏览器
}
else if (window.ActiveXObject)
{
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP")//旧版IE
}
catch (e) { }
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")//新版IE
}
catch (e) { }
if (!xmlhttp) {
window.alert("不能创建XMLHttpRequest对象")
}
}
xmlhttp.open("GET",yourFileURL,false)
xmlhttp.send()
if(xmlhttp.readyState==4){
if(xmlhttp.status==200)
flag =true
else
flag =false
}
return flag
},