1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00
QB64-PE/internal/help/_DIREXISTS.txt

35 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-03-18 11:36:04 +00:00
{{DISPLAYTITLE:_DIREXISTS}}
2017-10-10 14:55:21 +00:00
The [[_DIREXISTS]] function determines if a designated file path or folder exists and returns true (-1) or false (0).
{{PageSyntax}}
2017-10-10 14:55:21 +00:00
: {{Parameter|dirExists%}} = [[_DIREXISTS]]({{Parameter|filepath$}})
2017-10-10 14:55:21 +00:00
{{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.
2016-03-18 11:36:04 +00:00
* 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]]
2017-10-10 14:55:21 +00:00
{{PageExamples}}
{{Parameter|Example:'' Checks if a folder exists before proceeding.
{{CodeStart}}
2019-04-15 01:15:33 +00:00
{{Cl|IF}} {{Cl|_DIREXISTS}}("internal\temp") THEN
{{Cl|PRINT}} "Folder found."
2017-10-10 14:55:21 +00:00
{{Cl|END IF}}
{{CodeEnd}}}}
2017-10-10 14:55:21 +00:00
{{PageSeeAlso}}
* [[_FILEEXISTS]]
* [[SHELL]]
2016-03-18 11:36:04 +00:00
* [[_OS$]]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}
<