1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 12:21:20 +00:00
QB64-PE/internal/help/_DIREXISTS__111111111.txt
Roland Heyder aeb9c0668b Updates help files for use with new Wiki parser (2nd try)
Note: Many files were removed (not yet existing/empty pages). The parser will try to download them on demand and will auto-generate text for missing pages (eg. most _gl pages).
2022-05-21 00:18:31 +02:00

37 lines
1.3 KiB
Plaintext

{{QBDLDATE:05-20-2022}}
{{QBDLTIME:23:07:52}}
{{DISPLAYTITLE:_DIREXISTS}}
The [[_DIREXISTS]] function determines if a designated file path or folder exists and returns true (-1) or false (0).
{{PageSyntax}}
: {{Parameter|dirExists%}} = [[_DIREXISTS]]({{Parameter|filepath$}})
{{PageDescription}}
* The {{Parameter|filepath$}} parameter can be a literal or variable [[STRING|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.''' To find drives in Windows, use this API Library: [[Windows Libraries#Disk Drives|Disk Drives]]
{{PageExamples}}
{{Parameter|Example:'' Checks if a folder exists before proceeding.
{{CodeStart}}
{{Cl|IF}} {{Cl|_DIREXISTS}}("internal\temp") THEN
{{Cl|PRINT}} "Folder found."
{{Cl|END IF}}
{{CodeEnd}}}}
{{PageSeeAlso}}
* [[_FILEEXISTS]]
* [[SHELL]]
* [[_OS$]]
{{PageNavigation}}