Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/MountDirectory


Ignore:
Timestamp:
03/12/25 08:00:44 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/MountDirectory

    v3 v4  
    22Mount to a share
    33
    4 {{{
     4{{{#!c++
    55bool MountDirectory(const char* dev, const char* mountPath, const char* options, const char* type = NULL);
    66bool MountDirectory(string& strDev, string& strMountPath, string& strOptions, const char* type = NULL);
     
    2222== Examples ==
    2323
    24 {{{
     24{{{#!c++
    2525if(MountDirectory("/dev/sda1", "/run/media/sda1", "umask=0007,gid=6") == true) {
    2626  printf("Mounted successfully");