This is the AND version of
g_file_test(). That is, all file tests
specified in the
test bits have to succed for this function to
return TRUE. This function is implemented via birnet_file_check(),
which allowes for more detailed mode tests and is recommended
over use of this function.
Here is the list of possible
GFileTest flags:
- G_FILE_TEST_IS_REGULAR - test for a recular file
- G_FILE_TEST_IS_SYMLINK - test for a symlink
- G_FILE_TEST_IS_DIR - test for a directory
- G_FILE_TEST_IS_EXECUTABLE - test for an executable
- G_FILE_TEST_EXISTS - test whether the file exists
| file: | | a file to test
|
| test: | | bitfield of GFileTest flags |
|