
für gesicherte Verbindung entwickelt? Jeder meint eine eigene Suppe kochen zu müssen. Gibt
es auch SFTPS? Oder FTPS2 oder FTPS+?

Code: Alles auswählen
If OpenFTPEx(1, #PBEx_FTP_Protocol_FTPS_Explicit, "xxx", 000, "xxx", "xxx", #PB_UTF8, @ErrorOutput$)
ErrorMsg("Start der FTP Explicit Verbindung !", ErrorOutput$)
If ExamineFTPDirectoryEx(1, @ErrorOutput$)
ErrorMsg("ExamineFTPDirectory !", ErrorOutput$)
While NextFTPDirectoryEntryEx(1, @ErrorOutput$)
ErrorMsg("ExamineFTPDirectory !", ErrorOutput$)
FTPDirectoryEntryNameEx(1, @FileName$, @ErrorOutput$)
ErrorMsg("FTPDirectoryEntryNameEx !", ErrorOutput$)
MessageRequester("Name", FileName$)
Wend
FinishFTPDirectoryEx(1, @ErrorOutput$)
ErrorMsg("FinishFTPDirectoryEx !", ErrorOutput$)
EndIf
CloseFTPEx(1, @ErrorOutput$)
ErrorMsg("CloseFTPEx !", ErrorOutput$)
Else
ErrorMsg("OpenFTPEx !", ErrorOutput$)
EndIf
Code: Alles auswählen
Procedure.i ErrorMsg(Text.s, ErrorOutput$)
If ErrorOutput$
MessageRequester(Text, ErrorOutput$)
EndIf
EndProcedure