자바스크립트를 사용하여 파일 존재 여부를 확인하는 방법을 공유해 보세요.
1. 클라이언트 파일을 판단할 때
를 사용할 수 있습니다.
var fso,s=filespec; // filespec="C:/path/myfile.txt" fso=new ActiveXObject("Scripting.FileSystemObject"); if(fso.FileExists(filespec)) s+=" exists."; else // www.jb51.net s+=" doesn't exist."; alert(s);
2. 서버측(네트워크 파일)을 판단할 때
를 사용하면 됩니다.
var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open("GET",yourFileURL,false); xmlhttp.send(); if(xmlhttp.readyState==4){ if(xmlhttp.status==200)s+=" exists."; //url存在 else if(xmlhttp.status==404)s+=" doesn't exist."; //url不存在 else s+="";//其他状态 } // www.yuju100.com alert(s);
input style="width:100%" type="file" name="" id="" contentEditable="false" >contentEditable을 false로 설정하여 사용자가 임의의 파일이 아닌 선택한 파일만 사용하도록 제한할 수 있습니다. 들어가세요.