Hello guys,
I have next a trouble using EnterpriseDT Ftp for .NET.
In my VB.NET aplication I use FTPClient object to download big sized video files.
Something like this
Dim files() As String = ftp.Dir()
For Each fl As String In files
If fl.EndsWith(".wmv") Then
ftp.Get(path + "\" + fl, fl)
End If
Next
The problem is that if file is very big (im my case approximately > 300MB), process hangs and do not return from ftp.Get() function
without any message. If file have less size, foreach continuos to the next
Same problem is with ftp.Put(). It never returns if file have very big size. In both cases files are downloading and uploading in full size.
:(