Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/MountDirectory
- Timestamp:
- 03/12/25 08:00:44 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/MountDirectory
v3 v4 2 2 Mount to a share 3 3 4 {{{ 4 {{{#!c++ 5 5 bool MountDirectory(const char* dev, const char* mountPath, const char* options, const char* type = NULL); 6 6 bool MountDirectory(string& strDev, string& strMountPath, string& strOptions, const char* type = NULL); … … 22 22 == Examples == 23 23 24 {{{ 24 {{{#!c++ 25 25 if(MountDirectory("/dev/sda1", "/run/media/sda1", "umask=0007,gid=6") == true) { 26 26 printf("Mounted successfully");