Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
hyschive committed Jan 17, 2025
1 parent 5b9e30c commit 5fd2415
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Auxiliary/Aux_CheckFileExist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ bool Aux_CheckFolderExist( const char *FolderName )
// Note : Use the "stat" function to query the permission of the target file
//
// Parameter : FileName : Name of the target file
// : perms : Permissions code sum of the target file (4->read, 2->write, 1->execute)
// --> Example: 1. read and write permissions => 6=4+2
// 2. read and execute permissions => 5=4+1
// : perms : Permissions code of the target file (sum of 4->read, 2->write, 1->execute)
// --> Examples: 1. read and write permissions => 6 (4+2)
// 2. read and execute permissions => 5 (4+1)
//
// Return : true/false <-> you does/does not have the file permissions
//-------------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 5fd2415

Please sign in to comment.