我现在想实现一个效果,读取和写入文件放入FTP服务器
问题我现在已经有一个FTP服务器了,用正常的方式用户名和密码也能登录
但用你们的代码我读取不了目录
请问:我用什么代码可以判断我能登录FTP,还有, \update 这个什么意思,\前面代表什么
Dim ftp1 As New FtpClient
ftp1.Host="196.128.143.28"
ftp1.Account = "foxuser"
ftp1.Password = "138238110"
If ftp1.Upload("c:\data\Desert.jpg","\update\Desert.jpg") = True Then
Messagebox.show("上传完成!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
Else
Messagebox.show("上传失败!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
End If