dear friend, i need to download all the folders from my ftp system. so i have tried the below code.
so i have many folders and files inside the "VAU002" which is my another system. so i have one buton.if i click the button it has to download all the folders and files inside the "VAU002" folder. please show me some example code to do this pleaseCode:Dim wc As New Net.WebClient() wc.Credentials = New Net.NetworkCredential("ganesh", "") wc.DownloadFile("ftp://192.168.0.138/VAU002", "..\..\..\Local_Servers/VAU002") MsgBox("file downloaded") wc.Dispose()




Reply With Quote