I have shared folder on ubuntu/samba server of my network.
I am running my c# code on Vista , so How can i read file shared on ubuntu/samba server ?
My code :
String errorLogFile = @"\\\\198.168.0.2\\sharedfolder\myfile.wmv";
//throws excetion login fail
StreamReader sr = new StreamReader(errorLogFile);
sr.Read();
streamWriter.Close();