问题描述
- js 判断本地文件是否存在 不使用 Scripting.FileSystemObject
- js 判断本地文件是否存在 不使用 Scripting.FileSystemObject
解决方案
function ReportFileStatus(filespec) {
var fso s = filespec;
fso = new ActiveXObject(""Scripting.FileSystemObject"");
if (fso.FileExists(filespec))
s += "" exists."";
else
s += "" doesn't exist."";
return(s);
}
解决方案二:
不使用 Scripting.FileSystemObject 。。。。
解决方案三:
目前貌似就火狐支持html5标准,可以不通过fso来判断本地文件,其它浏览器貌似还不支持
时间: 2024-09-24 00:39:19