EncoderReplacementFallbackBuffer.Reset() did not really reset its internals.
[mono-project/dkf.git] / eglib / src / gfile-unix.c
blob4e17a089b5444b040cb92ed2562f4df52d365eb6
1 /*
2 * File utility functions.
4 * Author:
5 * Gonzalo Paniagua Javier (gonzalo@novell.com)
7 * (C) 2006 Novell, Inc.
9 * Permission is hereby granted, free of charge, to any person obtaining
10 * a copy of this software and associated documentation files (the
11 * "Software"), to deal in the Software without restriction, including
12 * without limitation the rights to use, copy, modify, merge, publish,
13 * distribute, sublicense, and/or sell copies of the Software, and to
14 * permit persons to whom the Software is furnished to do so, subject to
15 * the following conditions:
17 * The above copyright notice and this permission notice shall be
18 * included in all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 #include <config.h>
29 #include <glib.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <errno.h>
35 #include <fcntl.h>
37 #ifdef HAVE_UNISTD_H
38 #include <unistd.h>
39 #endif
41 gboolean
42 g_file_test (const gchar *filename, GFileTest test)
44 struct stat st;
45 gboolean have_stat;
47 if (filename == NULL || test == 0)
48 return FALSE;
50 have_stat = FALSE;
52 if ((test & G_FILE_TEST_EXISTS) != 0) {
53 if (access (filename, F_OK) == 0)
54 return TRUE;
57 if ((test & G_FILE_TEST_IS_EXECUTABLE) != 0) {
58 if (access (filename, X_OK) == 0)
59 return TRUE;
61 if ((test & G_FILE_TEST_IS_SYMLINK) != 0) {
62 have_stat = (lstat (filename, &st) == 0);
63 if (have_stat && S_ISLNK (st.st_mode))
64 return TRUE;
67 if ((test & G_FILE_TEST_IS_REGULAR) != 0) {
68 if (!have_stat)
69 have_stat = (stat (filename, &st) == 0);
70 if (have_stat && S_ISREG (st.st_mode))
71 return TRUE;
73 if ((test & G_FILE_TEST_IS_DIR) != 0) {
74 if (!have_stat)
75 have_stat = (stat (filename, &st) == 0);
76 if (have_stat && S_ISDIR (st.st_mode))
77 return TRUE;
79 return FALSE;