1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * gdir.c: Simplified wrapper around the DIRENT functions.
6 * Copyright 2001 Hans Breuer
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
27 #include <string.h> /* strcmp */
45 * @path: the path to the directory you are interested in
46 * @flags: Currently must be set to 0. Reserved for future use.
47 * @error: return location for a #GError, or %NULL.
48 * If non-%NULL, an error will be set if and only if
51 * Opens a directory for reading. The names of the files
52 * in the directory can then be retrieved using
55 * Return value: a newly allocated #GDir on success, %NULL on failure.
56 * If non-%NULL, you must free the result with g_dir_close()
57 * when you are finished with it.
60 g_dir_open (const gchar *path,
66 g_return_val_if_fail (path != NULL, NULL);
68 dir = g_new (GDir, 1);
70 dir->dir = opendir (path);
78 g_file_error_from_errno (errno),
79 _("Error opening directory '%s': %s"),
80 path, g_strerror (errno));
88 * @dir: a #GDir* created by g_dir_open()
90 * Retrieves the name of the next entry in the directory.
91 * The '.' and '..' entries are omitted.
93 * Return value: The entries name or %NULL if there are no
94 * more entries. The return value is owned by GLib and
95 * must not be modified or freed.
98 g_dir_read_name (GDir *dir)
100 struct dirent *entry;
102 g_return_val_if_fail (dir != NULL, NULL);
104 entry = readdir (dir->dir);
106 && (0 == strcmp (entry->d_name, ".") ||
107 0 == strcmp (entry->d_name, "..")))
108 entry = readdir (dir->dir);
111 return entry->d_name;
118 * @dir: a #GDir* created by g_dir_open()
120 * Resets the given directory. The next call to g_dir_read_name()
121 * will return the first entry again.
124 g_dir_rewind (GDir *dir)
126 g_return_if_fail (dir != NULL);
128 rewinddir (dir->dir);
133 * @dir: a #GDir* created by g_dir_open()
135 * Closes the directory and deallocates all related resources.
138 g_dir_close (GDir *dir)
140 g_return_if_fail (dir != NULL);