在项目关闭前,做了一个自动备份mdb文件的代码,发布后有的电脑正常,有的电脑会出现 应用程序中发生了无法处理的异常 这个报错
备份代码如下:
Syscmd.Project.save()
If FileSys.DirectoryExists(projectpath & "Attachments\" & Date.Today ) Then
Dim zip As New zipFile
zip.Create("\\USER-20161121ZA\access\" & Date.Today & "-" & Date.now.Hour & Date.now.Minute & "图片.zip")
zip.Password = "mypassword"
zip.AddFolder(projectpath & "Attachments\" & Date.Today )
zip.Close()
End If
If FileSys.DirectoryExists(mdblj) Then
Dim zip1 As New zipFile
zip1.Create("\\USER-20161121ZA\access\"& Date.Today & "-" & Date.now.Hour & Date.now.Minute & "mdb.zip")
zip1.Password = "mypassword"
zip1.AddFolder(mdblj, "*.mdb")
zip1.Close()
End If
报错详细信息如下:
有关调用实时(JIT)调试而不是此对话框的详细信息,
请参见此消息的结尾。
************** 异常文本 **************
System.IO.IOException: 在某些文件和目录下无法完成操作。有关详细信息,请参阅该异常的 Data 属性。
在 Microsoft.VisualBasic.FileIO.FileSystem.FxCopyOrMoveDirectory(CopyOrMove operation, String sourceDirectoryPath, String targetDirectoryPath, Boolean overwrite)
在 Microsoft.VisualBasic.MyServices.FileSystemProxy.CopyDirectory(String sourceDirectoryName, String destinationDirectoryName, Boolean overwrite)
在 CopyUpdateFile.frmCopyFile.Timer1_Tick(Object sender, EventArgs e)
在 System.Windows.Forms.Timer.OnTick(EventArgs e)
在 System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
在 System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
************** 已加载的程序集 **************
mscorlib
程序集版本: 2.0.0.0
Win32 版本: 2.0.50727.8669 (QFE.050727-8600)
基本代码: file:///C:/Windows/Microsoft.NET/Framework64/v2.0.50727/mscorlib.dll
----------------------------------------
CopyFile
程序集版本: 1.0.0.0
Win32 版本: 1.0.0.0
基本代码: file:///E:/新系统-勿删/财务管理/Copyfile.exe
----------------------------------------
System.Windows.Forms
程序集版本: 2.0.0.0
Win32 版本: 2.0.50727.5491 (Win7SP1GDR.050727-5400)
基本代码: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
程序集版本: 2.0.0.0
Win32 版本: 2.0.50727.8759 (QFE.050727-8700)
基本代码: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
程序集版本: 2.0.0.0
Win32 版本: 2.0.50727.5495 (Win7SP1GDR.050727-5400)
基本代码: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
Microsoft.VisualBasic
程序集版本: 8.0.0.0
Win32 版本: 8.0.50727.5483 (Win7SP1GDR.050727-5400)
基本代码: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
--------------------