[gvfs] [PROGRAMS] add a -n option to gvfs-ls for nofollow-symlinks
- From: Benjamin Otte <otte src gnome org>
- To: svn-commits-list gnome org
- Subject: [gvfs] [PROGRAMS] add a -n option to gvfs-ls for nofollow-symlinks
- Date: Wed, 17 Jun 2009 09:12:25 -0400 (EDT)
commit 8a72222d454bdf12e88402b2f012667e7c8e9754
Author: Benjamin Otte <otte gnome org>
Date: Wed Jun 17 15:11:18 2009 +0200
[PROGRAMS] add a -n option to gvfs-ls for nofollow-symlinks
programs/gvfs-ls.c | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/programs/gvfs-ls.c b/programs/gvfs-ls.c
index ecc136d..f817e63 100644
--- a/programs/gvfs-ls.c
+++ b/programs/gvfs-ls.c
@@ -31,6 +31,7 @@
static char *attributes = NULL;
static gboolean show_hidden = FALSE;
static gboolean show_long = FALSE;
+static gboolean nofollow_symlinks = FALSE;
static char *show_completions = NULL;
static GOptionEntry entries[] =
@@ -39,6 +40,7 @@ static GOptionEntry entries[] =
{ "hidden", 'h', 0, G_OPTION_ARG_NONE, &show_hidden, "Show hidden files", NULL },
{ "long", 'l', 0, G_OPTION_ARG_NONE, &show_long, "Use a long listing format", NULL },
{ "show-completions", 'c', 0, G_OPTION_ARG_STRING, &show_completions, "Show completions", NULL},
+ { "nofollow-symlinks", 'n', 0, G_OPTION_ARG_NONE, &nofollow_symlinks, "Don't follow symlinks", NULL},
{ NULL }
};
@@ -137,7 +139,11 @@ list (GFile *file)
return;
error = NULL;
- enumerator = g_file_enumerate_children (file, attributes, 0, NULL, &error);
+ enumerator = g_file_enumerate_children (file,
+ attributes,
+ nofollow_symlinks ? G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS : 0,
+ NULL,
+ &error);
if (enumerator == NULL)
{
g_printerr ("Error: %s\n", error->message);
@@ -328,7 +334,7 @@ print_completions (const char *arg)
enumerator = g_file_enumerate_children (parent,
G_FILE_ATTRIBUTE_STANDARD_NAME ","
G_FILE_ATTRIBUTE_STANDARD_TYPE,
- 0,
+ nofollow_symlinks ? G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS : 0,
NULL,
NULL);
if (enumerator != NULL)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]