AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones FTP
  • Deleting directories.
FTPRemoveDir (Example)
Deleting directories.
Reportes y Consultas
This example deletes the Temp directory of the FTP server.
nConnection is int
nConnection = FTPConnect("ftp.cdrom.com")
IF nConnection = -1 THEN
Error("Unable to establish the connection to the server")
ELSE
// Attempt to delete the Temp directory
IF FTPRemoveDir(nConnection, "Temp") THEN
Info("The directory was deleted")
ELSE
Error("The directory was not deleted")
END
END
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/05/2022

Señalar un error o enviar una sugerencia | Ayuda local