AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de archivos externos
  • Moving the content of a directory
fMoveDir (Example)
Moving the content of a directory
The following code is used to move the content of a directory. The subdirectories are also moved (frRecursive constant).
// Declare the variables
DirectoryToMove is string
DestinationDirectory is string
ResMove is boolean
 
// Select the directory to move
DirectoryToMove = "C:\DirectoryA"
// Select the destination directory
DestinationDirectory = "C:\DirectoryB"
 
// Move the content of the directory
ResMove = fMoveDir(DirectoryToMove, DestinationDirectory, frRecursive)
// Display an error message if the move was not performed
IF ResMove = False THEN
Error(ErrorInfo(errMessage))
ELSE
Info("The directory was moved")
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: 23/08/2022

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