Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Return value

boolean

Examples

Code Block
languagetext
int $fileID;

...


// Obtain file ID earlier do some operation to the file

...


// ... 

...

// See if the file was opened in "Read Mode"

...


if( `isFileReadable $fileID` == true ) 

...

    print "Can read from the file";
  else 
   print "Cannot read from the file";

Additional information

Related commands

...