nodejs 判断是文件还是文件夹

JavaScript019

nodejs 判断是文件还是文件夹,第1张

var fs = require("fs")

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

},