Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
andfunction CreateDir(const Dir: string): Boolean;
Description
CreateDir creates a new directory. The return value is true if a new directory was successfully created, or false if an error occurred.
function ForceDirectories(Dir: string): Boolean;
Description
ForceDirectories creates a new directory as specified in Dir, which must be a fully-qualified path name. If the directories given in the path do not yet exist, ForceDirectories attempts to create them.
ForceDirectories returns true if it successfully creates all necessary directories, false if it could not create a needed directory.