클라이언트 파일을 판단할 때
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 ="";// 기타 상태
}
경고;
입력 가능