0

我正在使用 My.Computer.Filesystem.WriteAllBytes 将存储在我的应用程序资源中的可执行文件写入它的启动目录。运行可执行文件后,我将其删除。一切正常;但是,我会无缘无故地随机获得 UnauthorizedAccessException。得到异常后,我可以毫无问题地手动删除文件。这是完整的代码:

' Convert MP3
' First, copy out converter
Dim Path = New IO.FileInfo(SoundPath)
Try
    My.Computer.FileSystem.WriteAllBytes(Application.StartupPath + "\converter.exe", My.Resources.madplay, False)
Catch ex As Exception
    MessageBox.Show(ex.ToString, "Report", MessageBoxButtons.OK)
    Exit Sub
End Try
' Set up process
Dim MAD As New Process
' Set process info
Dim output As String = IO.Path.GetFileNameWithoutExtension(Path.FullName) + ".wav"
Dim input As String = Path.FullName
Dim adjust As String = barVolumeAdjust.Value.ToString
Dim hz As String = "15000"
With (MAD.StartInfo)
    .FileName = Application.StartupPath + "\converter.exe"
    .Arguments = "-v -a " + adjust + " -R " + hz + " -o """ + output + """ """ + input + """"
    .UseShellExecute = False
    .RedirectStandardInput = True
    .RedirectStandardError = True
    .RedirectStandardOutput = True
    .CreateNoWindow = True
End With
' Start
MAD.Start()
' Update title with output
Dim Line As String = MAD.StandardError.ReadLine
While Not Line Is Nothing
    Me.Text = Line
    Line = MAD.StandardError.ReadLine
End While
' Stop
MAD.Close()
' Delete MAD
Try
    IO.File.Delete(Application.StartupPath + "\converter.exe")
Catch ex As Exception
    MessageBox.Show(ex.ToString, "Report", MessageBoxButtons.OK)
End Try

让我感到困惑的是,我实际上只是写出了可执行文件,而其他任何东西都不可能使用它。我检查了文件属性,它不是只读的。我的应用程序也以管理员身份运行。可能是什么问题呢?

4

2 回答 2

3

您无需等待进程退出,因此当您尝试删除文件时它仍在运行。请参阅过程。等待退出

于 2010-11-27T23:46:36.263 回答
1

看起来您使用单独的进程来写出文件 - 当您尝试删除时,这可能仍在使用该文件。

我建议捕获并处理异常以解决问题。

于 2010-11-27T23:48:09.833 回答