1

我用 . 检查文件是否存在File.Exists(filePath)。然后我尝试在 Excel 中使用Excel.Workbooks.OpenText(filePath). 但 Excel 抱怨该文件不存在。有没有搞错?

上下文是我正在使用另一个应用程序来处理给定文件并生成一个 .out 文件,然后我将其转换为 Excel 工作簿。

'' At this point, filePath is a .txt file.
Dim args As String = String.Format("""{0}""", filePath)
...
Dim exe As String = Config.ExtractEXE

Dim i As New ProcessStartInfo(exe)
i.Arguments = args

Dim p As Process = Process.Start(i)
p.WaitForExit()
...
'' filePath now becomes the .out file.
'' Then eventually, I get around to checking:
'If Not File.Exists(filePath) Then
'   MsgBox("Please ensure...")
'   Exit Sub
'End If
'' In response to an answer, I no longer check for the existence of the file, but
'' instead try to open the file.

Private Function fileIsReady(filePath As String) As Boolean
  Try
    Using fs As FileStream = File.OpenRead(filePath)
      Return True
    End Using
  Catch
    Return False
  End Try
End Function

Do Until fileIsReady(filePath)
  '' Wait.
Loop

ExcelFile.Convert(filePath...)
'' Wherein I make the call to:
Excel.Workbooks.OpenText(filePath...)
'' Which fails because filePath can't be found.

是否存在延迟问题,例如 .Net 在其他应用程序可以访问文件之前识别文件的存在?我只是不明白为什么File.Exists()可以告诉我文件在那里,然后 Excel 找不到它。

据我所知,唯一可能打开文件的应用程序是我调用来进行处理的应用程序。但是该应用程序应该在完成时p.WaitForExit()完成文件,对吗?

我不得不将此应用程序部署为一个已知的错误,这真的很糟糕。用户有一个简单的解决方法;但仍然 - 这个错误不应该。希望你能帮忙。

4

1 回答 1

2
  1. 文件是否存在并不是您能否打开它的唯一因素。您还需要查看文件系统权限和锁定。
  2. File.Exists 可能会欺骗您(如果您传递目录路径或发生任何错误,即使文件确实存在,它也会返回 false)
  3. if (File.Exists(...))文件系统是易变的,即使在一行和尝试在下一行打开文件之间的短暂时间内,情况也会发生变化。

总之:你几乎不应该使用 file.exists()。几乎任何时候你都想这样做,只要尝试打开文件并确保你有一个好的异常处理程序。

于 2012-12-18T14:23:09.243 回答