AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de archivos externos
  • Handling errors
  • Operating mode in Windows Vista (and later)
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Renames a directory.
Ejemplo
// Rename a directory
IF NOT fDirRename("C:\Directory", "RenamedDirectory") THEN
	ErrorInfo(errMessage)
END
Sintaxis
<Result> = fDirRename(<Directory to rename> , <New directory name>)
<Result>: Boolean
  • True if the modification was performed,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Directory to rename>: Character string
  • Full path of the directory to rename (up to 260 characters). A UNC path can be used.
  • Path relative to the current directory (returned by fCurrentDir)
Wildcard characters are not allowed.
CAUTION: The directory to be renamed must not be the application's current directory.
WindowsLinux This parameter can be in Ansi or Unicode format.
<New directory name>: Character string
New directory name (the full path of the directory with the new name must not exceed 260 characters). This name must not contain the disk name.
Wildcard characters are not allowed.
WindowsLinux This parameter can be in Ansi or Unicode format.
Observaciones

Handling errors

fDirRename throws an error in the following cases:
  • the directory to rename does not exist,
  • the directory to rename is blocked (e.g., one of its files is open),
  • the path of the directory to rename is invalid,
  • <New directory name> or <Directory to rename> is an empty string,
  • the new directory already exists.
Note: This function works on an empty directory.
WEBDEV - Código Servidor

Operating mode in Windows Vista (and later)

If this function does not work properly in Windows Vista (and later), check whether the file or directory used is not in one of the system directories (Windows directory or "Program Files" directory).
In Windows Vista (and later), with the UAC mechanism (User Account Control) enabled, you must have administrator privileges to handle and/or modify the files or directories in system directories (Windows directory or "Program Files" directory).
Programming tip: If you need to manipulate / modify files or directories, without needing administrator privileges, it is advisable:
  • avoid writing to the Windows directory or to the "Program Files" directory,
  • use the system directory of the application (returned by SysDir with the srAppDataCommun constant, for example).
Componente: wd300std.dll
Versión mínima requerida
  • Versión 25
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

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