hello i am having an error :
“Attempt to access the method failed: System.IO.File.Exists(System.String)”
i have to note that this line is having an external url
If File.Exists("http://www.demo.com/demo.xml") Then
blah
end if
during my first try it worked but now it seems bugy :S
it does not make sense !
It sounds like you should be making a web request (e.g. with
WebClient) instead.You’re using
File.Existsand passing it a URL.File.Existsis meant to be for file system paths. In fact, you’re not meant to callFile.Existsat all on Windows Phone 7. When in doubt, consult the documentation: