Logo

Programming-Idioms

History of Idiom 212 > diff from v6 to v7

Edit summary for version 7 by Bart:
New Pascal implementation by user [Bart]

Version 6

2019-10-23, 12:51:37

Version 7

2019-10-23, 14:03:46

Idiom #212 Check if folder exists

Set boolean b to true if path exists on the filesystem and is a directory; false otherwise.

Idiom #212 Check if folder exists

Set boolean b to true if path exists on the filesystem and is a directory; false otherwise.

Extra Keywords
test whether existence
Extra Keywords
test whether existence
Imports
sysutils
Code
b := DirectoryExists(path);