nodejs 判断是文件还是文件夹

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

var fs = require("fs")

var stat = fs.lstatSync("./xx")

console.log(stat.isDirectory())

如纳春果答亮返回结果为true则为清茄宽文件夹。

判断客户端文件时,可以用

var fso,s=filespec// filespec="C:/path/myfile.txt"

fso=new ActiveXObject("Scripting.FileSystemObject")

if(fso.FileExists(filespec))

s+=" 文件存在."粗知

else

s+=" 文件不存在."

alert(s)

判断服务器端(网络文件)时,可以用羡渣

var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")

xmlhttp.open("GET",yourFileURL,false)

xmlhttp.send()

if(xmlhttp.readyState==4){

if(xmlhttp.status==200)s+=" 存兄凳悄在."//url存在

else if(xmlhttp.status==404)s+=" 不存在."//url不存在

else s+=""//其他状态

}

alert(s)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12276778.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-24
下一篇 2023-05-24

发表评论

登录后才能评论

评论列表(0条)

保存