I have the following method:
public static DataSet BringProducts()
{
DataSet dataSet = new DataSet();
var dir = @"ProductsCookieData.xml";
if (File.Exists(dir)) //without File.Exists, same problem.
{
dataSet.ReadXml(dir);
}
return dataSet;
}
The file exists but the method does not see it ever. The file is in C:\, I tried in other locations and the same happens. Also tried without using static.
If I don't use the File.Exists(), FileNotFoundException is throwing.
FileNotFoundis thrown, then the file does not exist where you thought it is. Is this ASP.Net or Windows Application? – codingbiz Nov 22 '12 at 12:28