process a file stored remotely on web
Can I开发者_JS百科 just use File.Open to open such file? Is it the recommended way?
You need to download the file using WebRequest or WebClient classes and then you can open it.
No, you should use WebRequest or WebClient.
精彩评论