我在网络的 ubuntu/samba 服务器上有共享文件夹。
我在 Vista 上运行我的 c# 代码,那么如何读取在 ubuntu/samba 服务器上共享的文件?
我的代码:
String errorLogFile = @"\\\\198.168.0.2\\sharedfolder\myfile.wmv";
//throws excetion login fail
StreamReader sr = new StreamReader(errorLogFile);
sr.Read();
streamWriter.Close();