AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de archivos externos
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Checks the existence of a directory.
Remark: This function is equivalent to fDirExist.
Example
WINDEVWEBDEV - Server codeReports and QueriesJavaUser code (UMC)PHPAjax
MyDirectory is string = "C:\DataDirectory"
IF fDirectoryExist(MyDirectory) = True THEN
Info("The directory " + MyDirectory + " exists on disk")
END
Syntax
<Result> = fDirectoryExist(<Directory name>)
<Result>: Boolean
  • True if the directory exists,
  • False otherwise (the directory name corresponds to a file name for example).
<Directory name>: Character string
Name and full (or relative) path of the directory. Wildcard characters (*,?) are not allowed.
WindowsLinux This parameter can be in Ansi or Unicode format.
AndroidAndroid Widget 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 setup directory or one of its subdirectories, as well as to the external memory (SDCard).
Universal Windows 10 App The directory path corresponds to a relative path in relation to the current directory. The current directory corresponds to the data directory of application.
Reminder: Only the directories found in the data directory associated with the application can be used.
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: On iPhone/iPad, the file system is read-only on the device and on the emulator. An application can only write to its setup directory or one of its subdirectories.
Remarks
To check if a file exists, use fFileExist.
Component: wd290std.dll
Versión mínima requerida
  • Versión 9
Comentarios
CRIAR DIRETORIO WINDEV MOBILE
CRIAR DIRETORIO USANDO
SysStatusStorageCard
fDirectoryExist
fMakeDir

https://youtu.be/txcH3ajxokc

amarildo
07 11 2018
EXEMPLO
https://youtu.be/4X8OyClwJjk

http://windevdesenvolvimento.blogspot.com.br/2018/04/dicas-1740-publica-windev-arquivos-24.html

https://groups.google.com/d/forum/amarildowindev
http://windevdesenvolvimento.blogspot.com/2018/01/inscricao-para-grupo-privado-amarildo.html
http://windevdesenvolvimento.blogspot.com.br/2017/07/menu-blog.html

// EXEMPLO


// VOU PERGUNTAR SE DIRETORIO EXISTE

IF fDirectoryExist(EDT_DIRETORIO) THEN

ELSE
fMakeDir(EDT_DIRETORIO)
// SE NAO EXISTIR, VAMOS CRIAR DIRETORIO
END

// SIMPLES

De matos
29 05 2018
Exemplo para Ver Se Diretorio Existe
//Quero Verificar se Diretorio existe
IF fDirectoryExist(SAI_DIRETORIO) THEN
Info("Diretorio Existe")
ELSE
Info("Diretorio Nao Existe")
END

//Frances
SI fRépertoireExiste(SAI_DIRETORIO) ALORS
Info("Diretorio Existe")
SINON
Info("Diretorio Nao Existe")
FIN

//Blog Com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/03/curso-windev-arquivos-002-diretorio-ver.html
De matos AMARILDO
12 03 2016

Última modificación: 26/05/2022

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