我有以下代码:
Dim doesDiretoryExist As Boolean
dim path as string
path="\\someServer.mycomp.com\ftproot$\folderOne\TestFolder\TESTTWO\"
doesDiretoryExist = Directory.Exists(path)
我知道这个路径是正确的并且有一个文件夹,所以 didDiretoryExist 应该是真的。当我在本地运行我的网络应用程序时,它工作正常。但是,当我从 IIS 服务器运行应用程序时,doesDiretoryExist 总是返回 false。谁能解释为什么会发生这种情况以及我需要做些什么来纠正它?是因为路径指向网络共享文件夹吗?
谢谢杰森