判断客户端文件时,可以用
var fso,s=filespec; // filespec="C:/path/myfiletxt"
fso=new ActiveXObject("ScriptingFileSystemObject");
if(fsoFileExists(filespec))
s+=" exists";
else
s+=" doesn't exist";
alert(s);
判断服务器端(网络文件)时,可以用
var xmlhttp=new ActiveXObject("MicrosoftXMLHTTP");
xmlhttpopen("GET",yourFileURL,false);
xmlhttpsend();
if(xmlhttpreadyState==4){
if(xmlhttpstatus==200)s+=" exists"; //url存在
else if(xmlhttpstatus==404)s+=" doesn't exist"; //url不存在
else s+="";//其他状态
}
alert(s);
以上就是关于js判断文件夹及文件是否存在 谁有写好的js判断文件夹和文件是否存在的代码,给我拷贝下,全部的内容,包括:js判断文件夹及文件是否存在 谁有写好的js判断文件夹和文件是否存在的代码,给我拷贝下,、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)