File.Exists returns 仅在文件名上为真
File.Exists returns true on file name only
我目前正在调试一个应用程序,其中以下代码 returns 仅在文件名上为真。
If Not IO.File.Exists(out) Then
'' Work
End If
本次执行的手表如下:
当实际文件位于网络驱动器的相当深处时,如何验证此声明为真?如果文件与我的执行位于同一目录中,我认为这可能是真的。
文档:File.Exists
the path parameter is permitted to specify relative or absolute path
information. Relative path information is interpreted as relative to
the current working directory. To obtain the current working
directory, see GetCurrentDirectory
.
所以如果没有路径只有文件,路径就是应用程序的当前工作目录。
我目前正在调试一个应用程序,其中以下代码 returns 仅在文件名上为真。
If Not IO.File.Exists(out) Then
'' Work
End If
本次执行的手表如下:
当实际文件位于网络驱动器的相当深处时,如何验证此声明为真?如果文件与我的执行位于同一目录中,我认为这可能是真的。
文档:File.Exists
the path parameter is permitted to specify relative or absolute path information. Relative path information is interpreted as relative to the current working directory. To obtain the current working directory, see
GetCurrentDirectory
.
所以如果没有路径只有文件,路径就是应用程序的当前工作目录。