JavaScript下利用fso判断文件是否存在的代码
时间:2020-11-16 11:15:23|栏目:JavaScript代码|点击: 次
复制代码 代码如下:
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);
}
采用客户端的 FileSystemObject 对象
例:
复制代码 代码如下:
function check()
{
var fso;
fso = new ActiveXObject("Scripting.FileSystemObject");
if( fso.FileExists("c:\\testfile.txt"))
{
alert("Exists!");
}
else
{
alert("not Exists!");
}
}
栏 目:JavaScript代码
下一篇:JS 俄罗斯方块完美注释版代码
本文标题:JavaScript下利用fso判断文件是否存在的代码
本文地址:http://www.codeinn.net/misctech/22950.html