public string groupimport(string path)
  {
   System.IO.DirectoryInfo mydir=new DirectoryInfo(path);
   try
   {
    foreach(System.IO.FileInfo o in mydir.GetFiles())
    {
     string mypath=o.FullName;
     char[] a=new char[]{'.'};
     string patentID=o.Name.Split(a)[0];
     this.import(patentID,"test","test","2004-12-4","2005-12-4","test","test","06","01",o.FullName,"","");


    }
    return ture;
   }
   catch
   {
    return false;
   }
   
  }

 

相关文章:

  • 2021-10-16
  • 2021-07-11
  • 2021-10-03
  • 2021-10-14
  • 2021-12-05
  • 2021-04-17
  • 2022-12-23
猜你喜欢
  • 2021-12-05
  • 2021-10-08
  • 2021-05-20
  • 2022-02-01
  • 2022-12-23
  • 2021-09-22
相关资源
相似解决方案