You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the GLib documentation, g_file_test() returns TRUE if any
of the tests in the bitfield test are TRUE. For example,
(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR) will return TRUE if the file
exists; the check whether it's a directory doesn't matter since the
existence test is TRUE. With the current set of available tests, there's
no point passing in more than one test at a time.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
0 commit comments