Hi, does anyone had a problem like this? 
System.UnauthorizedAccessException: Access to the path "d:\ftp" is 
denied. 
I'm getting anoying with this! 
Below there's the code i'm using. 
--------- 
Dim ftp As New FTPClient("ftp.xxx.com") 
ftp.Login("user", "passwd") 
ftp.ConnectMode = FTPConnectMode.ACTIVE 
ftp.TransferType = FTPTransferType.BINARY 
ftp.Get("d:\ftp", "gzip.exe") 
ftp.Quit()