/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-directory.h is in libgnomevfs2-dev 1:2.24.4-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* gnome-vfs-directory.h - Directory handling for the GNOME Virtual
File System.
Copyright (C) 1999 Free Software Foundation
The Gnome Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The Gnome Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the Gnome Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Author: Ettore Perazzoli <ettore@comm2000.it> */
#ifndef GNOME_VFS_DIRECTORY_H
#define GNOME_VFS_DIRECTORY_H
#include <glib.h>
#include <libgnomevfs/gnome-vfs-file-info.h>
G_BEGIN_DECLS
typedef struct GnomeVFSDirectoryHandle GnomeVFSDirectoryHandle;
/**
* GnomeVFSDirectoryVisitOptions:
* @GNOME_VFS_DIRECTORY_VISIT_DEFAULT: Default options, i.e. call
* the specified #GnomeVFSDirectoryVisitFunc for each file.
* @GNOME_VFS_DIRECTORY_VISIT_SAMEFS: Visit only directories on the same
* file system as the parent
* @GNOME_VFS_DIRECTORY_VISIT_LOOPCHECK: Loop prevention. If this
* is set, and a file is found to be a directory referencing a prefiously
* found directory inode (i.e. already used for one of it's parents), this
* is considered a recursion loop, and #GnomeVFSDirectoryVisitFunc will
* be notified using its @recursing_will_loop parameter. If this is not
* set, the #GnomeVFSDirectoryVisitFunc's @recursing_will_loop parameter
* will always be set to %FALSE.
*
* These options control the way in which directories are visited. They are
* passed to gnome_vfs_directory_visit(), gnome_vfs_directory_visit_uri()
* gnome_vfs_directory_visit_files() and
* gnome_vfs_directory_visit_files_at_uri().
**/
typedef enum {
GNOME_VFS_DIRECTORY_VISIT_DEFAULT = 0,
GNOME_VFS_DIRECTORY_VISIT_SAMEFS = 1 << 0,
GNOME_VFS_DIRECTORY_VISIT_LOOPCHECK = 1 << 1,
GNOME_VFS_DIRECTORY_VISIT_IGNORE_RECURSE_ERROR = 1 << 2
} GnomeVFSDirectoryVisitOptions;
/**
* GnomeVFSDirectoryVisitFunc:
* @rel_path: A char * specifying the path of the currently visited
* file relative to the base directory for the visit.
* @info: The #GnomeVFSFileInfo of the currently visited file.
* @recursing_will_loop: Whether setting *@recurse to %TRUE will cause
* a loop, i.e. whether this is a link
* pointing to a parent directory.
* @user_data: The user data passed to gnome_vfs_directory_visit(),
* gnome_vfs_directory_visit_uri(), gnome_vfs_directory_visit_files() or
* gnome_vfs_directory_visit_files_at_uri().
* @recurse: A valid pointer to a #gboolean, which points to %FALSE by
* default and can be modified to point to %TRUE, which indicates that
* the currently considered file should be visited recursively.
* The recursive visit will only be actually done if @info refers to a directory,
* *@recurse is %TRUE and the return value of the #GnomeVFSDirectoryVisitFunc is %TRUE.
* *@recurse should usually not be set to %TRUE if @recursing_will_loop is %TRUE.
*
* This function is passed to gnome_vfs_directory_visit(),
* gnome_vfs_directory_visit_uri(), gnome_vfs_directory_visit_files() and
* gnome_vfs_directory_visit_files_at_uri(), and is called for each
* file in the specified directory.
*
* <note>
* When a recursive visit was requested for a particular directory, errors
* during the child visit will lead to a cancellation of the overall visit.
* Thus, you must ensure that the user has sufficient access rights to visit
* a directory before requesting a recursion.
* </note>
*
* Returns: %TRUE if visit should be continued, %FALSE otherwise.
**/
typedef gboolean (* GnomeVFSDirectoryVisitFunc) (const gchar *rel_path,
GnomeVFSFileInfo *info,
gboolean recursing_will_loop,
gpointer user_data,
gboolean *recurse);
GnomeVFSResult gnome_vfs_directory_open
(GnomeVFSDirectoryHandle **handle,
const gchar *text_uri,
GnomeVFSFileInfoOptions options);
GnomeVFSResult gnome_vfs_directory_open_from_uri
(GnomeVFSDirectoryHandle **handle,
GnomeVFSURI *uri,
GnomeVFSFileInfoOptions options);
GnomeVFSResult gnome_vfs_directory_read_next
(GnomeVFSDirectoryHandle *handle,
GnomeVFSFileInfo *file_info);
GnomeVFSResult gnome_vfs_directory_close
(GnomeVFSDirectoryHandle *handle);
GnomeVFSResult gnome_vfs_directory_visit
(const gchar *text_uri,
GnomeVFSFileInfoOptions info_options,
GnomeVFSDirectoryVisitOptions visit_options,
GnomeVFSDirectoryVisitFunc callback,
gpointer data);
GnomeVFSResult gnome_vfs_directory_visit_uri
(GnomeVFSURI *uri,
GnomeVFSFileInfoOptions info_options,
GnomeVFSDirectoryVisitOptions visit_options,
GnomeVFSDirectoryVisitFunc callback,
gpointer data);
GnomeVFSResult gnome_vfs_directory_visit_files
(const gchar *text_uri,
GList *file_list,
GnomeVFSFileInfoOptions info_options,
GnomeVFSDirectoryVisitOptions visit_options,
GnomeVFSDirectoryVisitFunc callback,
gpointer data);
GnomeVFSResult gnome_vfs_directory_visit_files_at_uri
(GnomeVFSURI *uri,
GList *file_list,
GnomeVFSFileInfoOptions info_options,
GnomeVFSDirectoryVisitOptions visit_options,
GnomeVFSDirectoryVisitFunc callback,
gpointer data);
GnomeVFSResult gnome_vfs_directory_list_load
(GList **list,
const gchar *text_uri,
GnomeVFSFileInfoOptions options);
G_END_DECLS
#endif
|