Hello,
How can i make streamreader read a file on internet?
it works just fine:
sr = new StreamReader(Application.dataPath + “/loader.txt”);
but if my file is in internet? I try it :
sr = new StreamReader(“http://www.biosphera.com.br/loader.txt”);
and it try to find a directory http://www.biosphera.com.br/loader.txt
Did something like Application.URL exists?