ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / External file functions
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 fDirectoryExist.
Example
WINDEVJavaUser code (UMC)
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 (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.
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.
Remarks
To check if a file exists, use fFileExist.
Component: wd290stp.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: 08/22/2022

Send a report | Local help