AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones FTP
  • Create a directory
FTPMakeDir (Example)
Create a directory
Reportes y Consultas This example creates the "/New/Temp/Data" directory in the current 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
IF FTPMakeDir(nConnection, "/New/Temp/Data") = True THEN
Info("The directory was created")
ELSE
Error("The directory was not created")
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