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
  • Error management
  • 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
Deletes a file accessible from the current computer.
WINDEVWEBDEV - Código ServidorReportes y ConsultasJavaCódigo de Usuario (UMC)PHPAjax
// Delete a file
ResDelete = fDelete("C:\MyDirectories\File.doc")
// ------------------
let nRes = fDelete("C:\my projects\My File.txt")
IF nRes = False THEN ErrorInfo(errMessage)
Sintaxis
<Result> = fDelete(<File name> [, <Option>])
<Result>: Boolean
  • True if the file was deleted,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<File name>: Character string
Name of the file to delete. This parameter can correspond to:
  • a file name. This file will be automatically searched in the current directory (returned by fCurrentDir).
  • a file name with its full or relative path. A UNC path can be used.
    Wildcard characters (*,?) are allowed in the file name.
    If no drive is specified, the file will be deleted from the current drive.
AndroidWidget Android Java If the "*.*" expression is used, only the files that have an extension will be deleted.
WindowsLinux This parameter can be in Ansi or Unicode format.
AndroidWidget Android This parameter can correspond to a full path or a path relative to the current directory (returned by fCurrentDir). This parameter is case-sensitive.
Reminder: In Android, the file system is read-only on the device and on the emulator. An application can only write to its installation directory or one of its subdirectories, as well as to the external memory (SDCard).
iPhone/iPadIOS WidgetMac Catalyst This parameter can correspond to a full path or a path relative to the current directory (returned by fCurrentDir). This parameter is case-sensitive.
Reminder Under iPhone/iPad, on both the device and the emulator, the file system is read-only. An application can only write to its installation directory or one of its subdirectories.
<Option>: Optional constant
Type of deletion to perform:
frReadOnlyAutomatically deletes the read-only files (without confirmation).
frToRecycleBinSends the file to the Windows recycle bin instead of deleting it.
WEBDEV - Código ServidorAndroidWidget Android Java This constant is not available.
PHP This parameter is not available.
Observaciones

Error management

fDelete throws an error in the following cases:
  • the file to delete does not exist,
  • the file to delete is open or locked,
  • the user has no read or write rights on the file to delete.
WINDEVWEBDEV - Código ServidorReportes y ConsultasCódigo de Usuario (UMC)

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 9
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