在JavaScript中操作文件

时间:2021-06-02 09:36:34

 1.判断一个文件是否存在

function FileExists(strPath)
{

      var ret;
      try
      { 
          var fso = new ActiveXObject("Scripting.FileSystemObject");


          if(fso.FileExists(strPath))
          {
                ret=true;
          }
          else
          {
                ret=false;
          }

      }
      catch(e)
      {
           ret=false;
      }   

 

      return ret;
}

 

备注:strPath必须为"C:\\WINDOWS\\system32\\JITDSign.ocx"这种格式