1 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ |
---|
2 | /* test-unlink.c - Test program for unlink operation in the GNOME |
---|
3 | Virtual File System. |
---|
4 | |
---|
5 | Copyright (C) 1999 Free Software Foundation |
---|
6 | Copyright (C) 2000 Eazel Inc. |
---|
7 | |
---|
8 | The Gnome Library is free software; you can redistribute it and/or |
---|
9 | modify it under the terms of the GNU Library General Public License as |
---|
10 | published by the Free Software Foundation; either version 2 of the |
---|
11 | License, or (at your option) any later version. |
---|
12 | |
---|
13 | The Gnome 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 | Library General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU Library General Public |
---|
19 | License along with the Gnome Library; see the file COPYING.LIB. If not, |
---|
20 | write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
21 | Boston, MA 02111-1307, USA. |
---|
22 | |
---|
23 | Authors: |
---|
24 | Ettore Perazzoli <ettore@gnu.org> |
---|
25 | Ian McKellar <yakk@yakk.net.au> |
---|
26 | */ |
---|
27 | |
---|
28 | #include "gnome-vfs.h" |
---|
29 | |
---|
30 | #include <stdio.h> |
---|
31 | #include <stdlib.h> |
---|
32 | #include <string.h> |
---|
33 | #include <unistd.h> |
---|
34 | |
---|
35 | static void |
---|
36 | show_result (GnomeVFSResult result, const gchar *what, const gchar *text_uri) |
---|
37 | { |
---|
38 | fprintf (stderr, "%s `%s': %s\n", |
---|
39 | what, text_uri, gnome_vfs_result_to_string (result)); |
---|
40 | if (result != GNOME_VFS_OK) |
---|
41 | exit (1); |
---|
42 | } |
---|
43 | |
---|
44 | int |
---|
45 | main (int argc, char **argv) |
---|
46 | { |
---|
47 | GnomeVFSResult result; |
---|
48 | GnomeVFSURI *uri; |
---|
49 | gchar *text_uri; |
---|
50 | |
---|
51 | if (argc != 3) { |
---|
52 | printf ("Usage: %s (make|remove) <uri>\n", argv[0]); |
---|
53 | return 1; |
---|
54 | } |
---|
55 | |
---|
56 | if (! gnome_vfs_init ()) { |
---|
57 | fprintf (stderr, "Cannot initialize gnome-vfs.\n"); |
---|
58 | return 1; |
---|
59 | } |
---|
60 | |
---|
61 | uri = gnome_vfs_uri_new (argv[2]); |
---|
62 | if (uri == NULL) { |
---|
63 | fprintf (stderr, "URI not valid.\n"); |
---|
64 | return 1; |
---|
65 | } |
---|
66 | |
---|
67 | text_uri = gnome_vfs_uri_to_string (uri, GNOME_VFS_URI_HIDE_NONE); |
---|
68 | |
---|
69 | if(!strcmp(argv[1], "make")) { |
---|
70 | result = gnome_vfs_make_directory_for_uri (uri, 755); |
---|
71 | show_result (result, "make_directory", text_uri); |
---|
72 | } else if(!strcmp(argv[1], "remove")) { |
---|
73 | result = gnome_vfs_remove_directory_from_uri (uri); |
---|
74 | show_result (result, "remove_directory", text_uri); |
---|
75 | } else { |
---|
76 | fprintf (stderr, "Unknown directory operation `%s'\n", argv[1]); |
---|
77 | } |
---|
78 | |
---|
79 | g_free (text_uri); |
---|
80 | |
---|
81 | return 0; |
---|
82 | } |
---|