function ReportFileStatus(filespec)
{
var fso, s = filespec;
fso = new ActiveXObject("Scripting.FileSystemObject");
if (fso.FileExists(filespec))
s = " 존재합니다."; >s = " 존재하지 않습니다.";
return(s);
}
클라이언트의 FileSystemObject 개체 사용
예:
function check()
{
var fso
fso = new ActiveXObject(" Scripting.FileSystemObject");
if( fso.FileExists("c:\testfile.txt"))
{
alert("존재합니다!");
else
{
alert("존재하지 않습니다!")
}
}