Windows フォーム アプリケーションを実行しているユーザーがそのフォルダーにアクセスできない場合に、(UNIX) ネットワーク フォルダーが存在するかどうかを確認する方法はありますか?
私は次の方法を使用していますが、そのネットワークフォルダーにアクセスできないため、.NET は存在しないと見なし、メソッドは常に false を返します。
Private Function DoesUnixDirectoryExist() As Boolean
Dim bRet As Boolean = False
Dim dirInfo As New DirectoryInfo("\\unix\dir\here\")
Try
If dirInfo.Exists Then
bRet = True
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
Return bRet
End Function
ご協力いただきありがとうございます!