Re: Problem with LIST (General questions)
Dave,
you should set Ftp1.ListParams = to get rid of '-al' parameter to LIST command:
http://www.weonlydo.com/FtpDLX/Help/wodFtpDLXLib~wodFtpDLX~ListParams.html
As for masking the password - other customers would want it visible. It's easier for you to mask it by yourself, than others to retrieve it that actually need it.
You could do something like this in FTPReply event:
[code]If Left$(Command,4) = PASS then
Debug.Print PASS XXX
else
Debug.Print Command
Endif[/code]
and that's it.
Regards,
Kreso
Complete thread:
- Problem with LIST - dtw01, 2006-09-12, 23:11
- Re: Problem with LIST - wodSupport, 2006-09-12, 23:16
- Re: Problem with LIST - dtw01, 2006-09-12, 23:19
- Re: Problem with LIST - wodSupport, 2006-09-12, 23:16