Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/MakeDirIfNotExists
- Timestamp:
- 05/17/24 12:15:01 (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/MakeDirIfNotExists
v1 v1 1 = MakeDirIfNotExists = 2 Create the specified directory path if it does not already exist 3 4 {{{ 5 bool MakeDirIfNotExists(const char* path); 6 7 bool MakeDirIfNotExists(string& str); 8 }}} 9 10 == Parameters == 11 12 * str - string variable containing path 13 * path - character array pointer containing path 14 15 == Return Value == 16 17 * Returns true if successful, false if error 18 19 == Remarks == 20 21 22 == Examples == 23 24 {{{ 25 }}} 26 27 28 == See Also == 29 30