ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Attention : This is version 26 of this documentation page. This feature may have been changed or removed in a higher version.
Help / WLanguage / WLanguage functions / Standard functions / Mobile Device (Pocket PC) access functions
  • Equivalence
  • Checking the existence of a directory
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadApple WatchUniversal Windows 10 AppWindows Mobile
Others
Stored procedures
ceFileExist (Function)
In french: ceFichierExiste
Checks the existence of a file. This file is found on the Mobile Device (Pocket PC) connected to the current computer.
Remarks:
  • ceFileExist can be used only if a connection is established between the current computer and the Mobile device (ceConnect).
  • This function is available in 64-bit mode.
Example
// Existence of a file
IF ceFileExist("\MyFiles\File.BMP") = True THEN
Info("This file is found on the Mobile Device")
END
Syntax
<Result> = ceFileExist(<File name>)
<Result>: Boolean
  • True if the file exists,
  • False otherwise. To find out the error details, use ErrorInfo.
<File name>: Character string (with quotes)
Name and full path of file. The wildcard characters (*,?) are not allowed.
Remarks

Equivalence

ceFileExist and fFileExist have similar operating modes.
The only difference is:
  • ceFileExist handles a file found on the Mobile Device (Pocket PC) from a WINDEV application.
  • fFileExist handles a file found on the Mobile Device (Pocket PC) only from a WINDEV Mobile application.

Checking the existence of a directory

To check the existence of a directory, use ceDir.
Component: wd260ce.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/18/2020

Send a report | Local help