T Todd Sep 17, 2003 #1 Is there anyway, using vb.net, to connect to a Unix server and read a text file from it? Any samples would help. thanks, todd
Is there anyway, using vb.net, to connect to a Unix server and read a text file from it? Any samples would help. thanks, todd
T Tom Shelton Sep 17, 2003 #2 Todd said: Is there anyway, using vb.net, to connect to a Unix server and read a text file from it? Any samples would help. thanks, todd Click to expand... One way would be to use the WinInet API. I do something similar only the other way... I write a file to a Unix server. The underlying mechanism is FTP, but it looks like a simple file write from my C# code Tom Shelton
Todd said: Is there anyway, using vb.net, to connect to a Unix server and read a text file from it? Any samples would help. thanks, todd Click to expand... One way would be to use the WinInet API. I do something similar only the other way... I write a file to a Unix server. The underlying mechanism is FTP, but it looks like a simple file write from my C# code Tom Shelton
H Herfried K. Wagner [MVP] Sep 17, 2003 #4 Hello, Cor said: That is where FTP is made for. (from it not on it) Click to expand... VB.NET: http://www.freevbcode.com/ShowCode.Asp?ID=4655 http://www.allapi.net/downloads/NetFTP.zip http://www.visualbuilder.com/article/viewarticle.asp?id=1234 http://www.abderaware.com/ (commercial FTP component) C#: http://www.csharphelp.com/archives/archive9.html http://www.codeproject.com/csharp/FTPDriver1.asp
Hello, Cor said: That is where FTP is made for. (from it not on it) Click to expand... VB.NET: http://www.freevbcode.com/ShowCode.Asp?ID=4655 http://www.allapi.net/downloads/NetFTP.zip http://www.visualbuilder.com/article/viewarticle.asp?id=1234 http://www.abderaware.com/ (commercial FTP component) C#: http://www.csharphelp.com/archives/archive9.html http://www.codeproject.com/csharp/FTPDriver1.asp