Determining if an XDocument File Exists
- by tkeE2036
Hello Everyone,
I am using LINQ and I was wondering what is the best way to create an XDocument and then check to make sure that the XDocument actually exists, much like File.Exists?
String fileLoc = "path/to/file";
XDocument doc = new XDocument(fileLoc);
//Now I want to check to see if this file exists
Is there a way to do this?
Thanks!