我现在的情况是:
以下代码在.net 2005环境下调试正常,可以遍历文件夹,可是发布到iis上就找不到相应的文件夹了!
192.168.0.2 是远程机的ip地址.
代码如下:
string sPath = "\\\\192.168.0.2\\ShareFile\\Date\\2009-10-01\\1000102591-1";
//遍历文件夹
try
{
DirectoryInfo dInfo = new DirectoryInfo(sPath);
if (dInfo.Exists)
{
FileInfo[] fInfos = dInfo.GetFiles("*.jpg");
string[] sTemp = new string[fInfos.Length];
for (int i = 0; i < sTemp.Length; i++)
{
sTemp[i] = sPath + "\\" + fInfos[i].Name;
}
}
}
catch (Exception ex)
{
Response.Write(ex.Message);
}