mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 16:53:46 +01:00
There is really no reason to implement file_exists on our own.
This commit is contained in:
parent
c9de38d960
commit
2475c371fd
@ -209,7 +209,7 @@ zathura_document_open(zathura_t* zathura, const char* path, const char* password
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (file_exists(path) == false) {
|
||||
if (g_file_test(path, G_FILE_TEST_EXISTS) == FALSE) {
|
||||
girara_error("File '%s' does not exist", path);
|
||||
return NULL;
|
||||
}
|
||||
|
@ -4,10 +4,6 @@
|
||||
|
||||
#include "../utils.h"
|
||||
|
||||
START_TEST(test_file_exists_null) {
|
||||
fail_unless(file_exists(NULL) == false, NULL);
|
||||
} END_TEST
|
||||
|
||||
START_TEST(test_file_get_extension_null) {
|
||||
fail_unless(file_get_extension(NULL) == NULL, NULL);
|
||||
} END_TEST
|
||||
@ -34,11 +30,6 @@ Suite* suite_utils()
|
||||
TCase* tcase = NULL;
|
||||
Suite* suite = suite_create("Utils");
|
||||
|
||||
/* file exists */
|
||||
tcase = tcase_create("file_exists");
|
||||
tcase_add_test(tcase, test_file_exists_null);
|
||||
suite_add_tcase(suite, tcase);
|
||||
|
||||
/* file exists */
|
||||
tcase = tcase_create("file_get_extension");
|
||||
tcase_add_test(tcase, test_file_get_extension_null);
|
||||
|
10
utils.c
10
utils.c
@ -17,16 +17,6 @@
|
||||
|
||||
#define BLOCK_SIZE 64
|
||||
|
||||
bool
|
||||
file_exists(const char* path)
|
||||
{
|
||||
if (!access(path, F_OK)) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
const char*
|
||||
file_get_extension(const char* path)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user