ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / External file functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Checks the existence of a directory.
Note: This function is equivalent to fDirectoryExist.
Example
WINDEVWEBDEV - Server codeReports and QueriesJavaUser code (UMC)PHPAjax
MyDirectory is string = "C:\DataDirectory"
IF fDirExist(MyDirectory) = True THEN 
	Info("The directory " + MyDirectory + " exists on disk")
END
Syntax
<Result> = fDirExist(<Directory name>)
<Result>: Boolean
  • True if the directory exists,
  • False otherwise (for example, if the directory name corresponds to a file name).
<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 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: In iOS/iPadOS, 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.
Remarks
To check if a file exists, use fFileExist.
Component: wd300stp.dll
Minimum version required
  • Version 21
This page is also available for…
Comments
Exemplo - ver se diretorio existe
Exemplo - ver se diretorio existe

s_diretorio is string="e:\aleva1"
IF fDirExist(s_diretorio) THEN
Info("Ja existe diretorio")
ELSE
Info("Nao Existe")
END

//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-arquivos-006-arquivos-ver.html
https://www.youtube.com/watch?v=VaDyezW5kaw


De matos AMARILDO
17 Aug. 2016

Last update: 05/13/2025

Send a report | Local help