1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/_DIREXISTS.md
2022-12-24 21:14:48 -06:00

1,021 B

The _DIREXISTS function determines if a designated file path or folder exists and returns true (-1) or false (0).

Syntax

dirExists% = _DIREXISTS(filepath$)

Description

  • The filepath$ parameter can be a literal or variable STRING path value.
  • The function returns -1 when a path or folder exists and 0 when it does not.
  • The function reads the system information directly without using a SHELL procedure.
  • The function will use the appropriate Operating System path separators. _OS$ can determine the operating system.
  • This function does not guarantee that a path can be accessed, only that it exists.
  • NOTE: Checking if a folder exists in a CD drive may cause the tray to open automatically to request a disk when empty.

Example(s)

Checks if a folder exists before proceeding.


IF _DIREXISTS("internal\temp") THEN
    PRINT "Folder found."
END IF

See Also