blob: 80d0554e42e30f99dd577a44feed455a3319b97f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <glib.h>
int main(int argc, char *argv[])
{
if (!g_file_test("file", G_FILE_TEST_EXISTS)) {
g_print("File not found. \n");
} else {
g_print("File found. \n");
}
return 0;
}
|