时间:2020-08-20加入收藏
<script type="text/javascript">
function filecheck(filePath) {
// filePath为文件的本地路径
var fileso = new ActiveXObject("Scripting.FileSystemObject");
if(fileso.FileExists(filePath)){
alert("文件存在!");
}else{
alert("文件不存在");
}
}
</script>