Example #1
0
 public static void CreateFile()
 {
     lock (ejsLock)
     {
         try
         {
             //create doc content into file
             CheckFolders();
             if (!File.Exists(path))
             {
                 FileStream fs = new FileStream(path, FileMode.Create);
                 TVMUtility.ResetTransactionFileSequenceID(0);
                 fs.Close();
             }
         }
         catch (Exception ex)
         {
         }
     }
 }