...
Return value
boolean
Examples
Code Block | ||
---|---|---|
| ||
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
...