on success, close the pipes from the child. Fix from Tim.
[platform/upstream/glib.git] / glib / gfileutils.c
1 /* gfileutils.c - File utility functions
2  *
3  *  Copyright 2000 Red Hat, Inc.
4  *
5  * GLib is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU Lesser General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * GLib is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with GLib; see the file COPYING.LIB.  If not,
17  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  *   Boston, MA 02111-1307, USA.
19  */
20
21 #include "config.h"
22
23 #include "glib.h"
24
25 #include <sys/stat.h>
26 #ifdef HAVE_UNISTD_H
27 #include <unistd.h>
28 #endif
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <stdarg.h>
32 #include <string.h>
33 #include <errno.h>
34 #include <sys/types.h>
35 #include <sys/stat.h>
36 #include <fcntl.h>
37 #include <stdlib.h>
38
39 #ifdef G_OS_WIN32
40 #include <io.h>
41 #ifndef F_OK
42 #define F_OK 0
43 #define X_OK 1
44 #define W_OK 2
45 #define R_OK 4
46 #endif /* !F_OK */
47
48 #ifndef S_ISREG
49 #define S_ISREG(mode) ((mode)&_S_IFREG)
50 #endif
51
52 #ifndef S_ISDIR
53 #define S_ISDIR(mode) ((mode)&_S_IFDIR)
54 #endif
55
56 #endif /* G_OS_WIN32 */
57
58 #ifndef S_ISLNK
59 #define S_ISLNK(x) 0
60 #endif
61
62 #ifndef O_BINARY
63 #define O_BINARY 0
64 #endif
65
66 #include "glibintl.h"
67
68 /**
69  * g_file_test:
70  * @filename: a filename to test
71  * @test: bitfield of #GFileTest flags
72  * 
73  * Returns %TRUE if any of the tests in the bitfield @test are
74  * %TRUE. For example, <literal>(G_FILE_TEST_EXISTS | 
75  * G_FILE_TEST_IS_DIR)</literal> will return %TRUE if the file exists; 
76  * the check whether it's a directory doesn't matter since the existence 
77  * test is %TRUE. With the current set of available tests, there's no point
78  * passing in more than one test at a time.
79  * 
80  * Apart from #G_FILE_TEST_IS_SYMLINK all tests follow symbolic links,
81  * so for a symbolic link to a regular file g_file_test() will return
82  * %TRUE for both #G_FILE_TEST_IS_SYMLINK and #G_FILE_TEST_IS_REGULAR.
83  *
84  * Note, that for a dangling symbolic link g_file_test() will return
85  * %TRUE for #G_FILE_TEST_IS_SYMLINK and %FALSE for all other flags.
86  *
87  * Return value: whether a test was %TRUE
88  **/
89 gboolean
90 g_file_test (const gchar *filename,
91              GFileTest    test)
92 {
93   if ((test & G_FILE_TEST_EXISTS) && (access (filename, F_OK) == 0))
94     return TRUE;
95   
96   if ((test & G_FILE_TEST_IS_EXECUTABLE) && (access (filename, X_OK) == 0))
97     return TRUE;
98
99   if (test & G_FILE_TEST_IS_SYMLINK)
100     {
101 #ifdef G_OS_WIN32
102       /* no sym links on win32, no lstat in msvcrt */
103 #else
104       struct stat s;
105
106       if ((lstat (filename, &s) == 0) && S_ISLNK (s.st_mode))
107         return TRUE;
108 #endif
109     }
110   
111   if (test & (G_FILE_TEST_IS_REGULAR | G_FILE_TEST_IS_DIR))
112     {
113       struct stat s;
114       
115       if (stat (filename, &s) == 0)
116         {
117           if ((test & G_FILE_TEST_IS_REGULAR) && S_ISREG (s.st_mode))
118             return TRUE;
119           
120           if ((test & G_FILE_TEST_IS_DIR) && S_ISDIR (s.st_mode))
121             return TRUE;
122         }
123     }
124
125   return FALSE;
126 }
127
128 GQuark
129 g_file_error_quark (void)
130 {
131   static GQuark q = 0;
132   if (q == 0)
133     q = g_quark_from_static_string ("g-file-error-quark");
134
135   return q;
136 }
137
138 /**
139  * g_file_error_from_errno:
140  * @err_no: an "errno" value
141  * 
142  * Gets a #GFileError constant based on the passed-in @errno.
143  * For example, if you pass in %EEXIST this function returns
144  * #G_FILE_ERROR_EXIST. Unlike @errno values, you can portably
145  * assume that all #GFileError values will exist.
146  *
147  * Normally a #GFileError value goes into a #GError returned
148  * from a function that manipulates files. So you would use
149  * g_file_error_from_errno() when constructing a #GError.
150  * 
151  * Return value: #GFileError corresponding to the given @errno
152  **/
153 GFileError
154 g_file_error_from_errno (gint err_no)
155 {
156   switch (err_no)
157     {
158 #ifdef EEXIST
159     case EEXIST:
160       return G_FILE_ERROR_EXIST;
161       break;
162 #endif
163
164 #ifdef EISDIR
165     case EISDIR:
166       return G_FILE_ERROR_ISDIR;
167       break;
168 #endif
169
170 #ifdef EACCES
171     case EACCES:
172       return G_FILE_ERROR_ACCES;
173       break;
174 #endif
175
176 #ifdef ENAMETOOLONG
177     case ENAMETOOLONG:
178       return G_FILE_ERROR_NAMETOOLONG;
179       break;
180 #endif
181
182 #ifdef ENOENT
183     case ENOENT:
184       return G_FILE_ERROR_NOENT;
185       break;
186 #endif
187
188 #ifdef ENOTDIR
189     case ENOTDIR:
190       return G_FILE_ERROR_NOTDIR;
191       break;
192 #endif
193
194 #ifdef ENXIO
195     case ENXIO:
196       return G_FILE_ERROR_NXIO;
197       break;
198 #endif
199
200 #ifdef ENODEV
201     case ENODEV:
202       return G_FILE_ERROR_NODEV;
203       break;
204 #endif
205
206 #ifdef EROFS
207     case EROFS:
208       return G_FILE_ERROR_ROFS;
209       break;
210 #endif
211
212 #ifdef ETXTBSY
213     case ETXTBSY:
214       return G_FILE_ERROR_TXTBSY;
215       break;
216 #endif
217
218 #ifdef EFAULT
219     case EFAULT:
220       return G_FILE_ERROR_FAULT;
221       break;
222 #endif
223
224 #ifdef ELOOP
225     case ELOOP:
226       return G_FILE_ERROR_LOOP;
227       break;
228 #endif
229
230 #ifdef ENOSPC
231     case ENOSPC:
232       return G_FILE_ERROR_NOSPC;
233       break;
234 #endif
235
236 #ifdef ENOMEM
237     case ENOMEM:
238       return G_FILE_ERROR_NOMEM;
239       break;
240 #endif
241
242 #ifdef EMFILE
243     case EMFILE:
244       return G_FILE_ERROR_MFILE;
245       break;
246 #endif
247
248 #ifdef ENFILE
249     case ENFILE:
250       return G_FILE_ERROR_NFILE;
251       break;
252 #endif
253
254 #ifdef EBADF
255     case EBADF:
256       return G_FILE_ERROR_BADF;
257       break;
258 #endif
259
260 #ifdef EINVAL
261     case EINVAL:
262       return G_FILE_ERROR_INVAL;
263       break;
264 #endif
265
266 #ifdef EPIPE
267     case EPIPE:
268       return G_FILE_ERROR_PIPE;
269       break;
270 #endif
271
272 #ifdef EAGAIN
273     case EAGAIN:
274       return G_FILE_ERROR_AGAIN;
275       break;
276 #endif
277
278 #ifdef EINTR
279     case EINTR:
280       return G_FILE_ERROR_INTR;
281       break;
282 #endif
283
284 #ifdef EIO
285     case EIO:
286       return G_FILE_ERROR_IO;
287       break;
288 #endif
289
290 #ifdef EPERM
291     case EPERM:
292       return G_FILE_ERROR_PERM;
293       break;
294 #endif
295       
296     default:
297       return G_FILE_ERROR_FAILED;
298       break;
299     }
300 }
301
302 static gboolean
303 get_contents_stdio (const gchar *filename,
304                     FILE        *f,
305                     gchar      **contents,
306                     gsize       *length, 
307                     GError     **error)
308 {
309   gchar buf[2048];
310   size_t bytes;
311   char *str;
312   size_t total_bytes;
313   size_t total_allocated;
314   
315   g_assert (f != NULL);
316
317 #define STARTING_ALLOC 64
318   
319   total_bytes = 0;
320   total_allocated = STARTING_ALLOC;
321   str = g_malloc (STARTING_ALLOC);
322   
323   while (!feof (f))
324     {
325       bytes = fread (buf, 1, 2048, f);
326
327       while ((total_bytes + bytes + 1) > total_allocated)
328         {
329           total_allocated *= 2;
330           str = g_try_realloc (str, total_allocated);
331
332           if (str == NULL)
333             {
334               g_set_error (error,
335                            G_FILE_ERROR,
336                            G_FILE_ERROR_NOMEM,
337                            _("Could not allocate %lu bytes to read file \"%s\""),
338                            (gulong) total_allocated, filename);
339               goto error;
340             }
341         }
342       
343       if (ferror (f))
344         {
345           g_set_error (error,
346                        G_FILE_ERROR,
347                        g_file_error_from_errno (errno),
348                        _("Error reading file '%s': %s"),
349                        filename, g_strerror (errno));
350
351           goto error;
352         }
353
354       memcpy (str + total_bytes, buf, bytes);
355       total_bytes += bytes;
356     }
357
358   fclose (f);
359
360   str[total_bytes] = '\0';
361   
362   if (length)
363     *length = total_bytes;
364   
365   *contents = str;
366   
367   return TRUE;
368
369  error:
370
371   g_free (str);
372   fclose (f);
373   
374   return FALSE;  
375 }
376
377 #ifndef G_OS_WIN32
378
379 static gboolean
380 get_contents_regfile (const gchar *filename,
381                       struct stat *stat_buf,
382                       gint         fd,
383                       gchar      **contents,
384                       gsize       *length,
385                       GError     **error)
386 {
387   gchar *buf;
388   size_t bytes_read;
389   size_t size;
390   size_t alloc_size;
391   
392   size = stat_buf->st_size;
393
394   alloc_size = size + 1;
395   buf = g_try_malloc (alloc_size);
396
397   if (buf == NULL)
398     {
399       g_set_error (error,
400                    G_FILE_ERROR,
401                    G_FILE_ERROR_NOMEM,
402                    _("Could not allocate %lu bytes to read file \"%s\""),
403                    (gulong) alloc_size, filename);
404
405       goto error;
406     }
407   
408   bytes_read = 0;
409   while (bytes_read < size)
410     {
411       gssize rc;
412           
413       rc = read (fd, buf + bytes_read, size - bytes_read);
414
415       if (rc < 0)
416         {
417           if (errno != EINTR) 
418             {
419               g_free (buf);
420                   
421               g_set_error (error,
422                            G_FILE_ERROR,
423                            g_file_error_from_errno (errno),
424                            _("Failed to read from file '%s': %s"),
425                            filename, g_strerror (errno));
426
427               goto error;
428             }
429         }
430       else if (rc == 0)
431         break;
432       else
433         bytes_read += rc;
434     }
435       
436   buf[bytes_read] = '\0';
437
438   if (length)
439     *length = bytes_read;
440   
441   *contents = buf;
442
443   close (fd);
444
445   return TRUE;
446
447  error:
448
449   close (fd);
450   
451   return FALSE;
452 }
453
454 static gboolean
455 get_contents_posix (const gchar *filename,
456                     gchar      **contents,
457                     gsize       *length,
458                     GError     **error)
459 {
460   struct stat stat_buf;
461   gint fd;
462   
463   /* O_BINARY useful on Cygwin */
464   fd = open (filename, O_RDONLY|O_BINARY);
465
466   if (fd < 0)
467     {
468       g_set_error (error,
469                    G_FILE_ERROR,
470                    g_file_error_from_errno (errno),
471                    _("Failed to open file '%s': %s"),
472                    filename, g_strerror (errno));
473
474       return FALSE;
475     }
476
477   /* I don't think this will ever fail, aside from ENOMEM, but. */
478   if (fstat (fd, &stat_buf) < 0)
479     {
480       close (fd);
481       
482       g_set_error (error,
483                    G_FILE_ERROR,
484                    g_file_error_from_errno (errno),
485                    _("Failed to get attributes of file '%s': fstat() failed: %s"),
486                    filename, g_strerror (errno));
487
488       return FALSE;
489     }
490
491   if (stat_buf.st_size > 0 && S_ISREG (stat_buf.st_mode))
492     {
493       return get_contents_regfile (filename,
494                                    &stat_buf,
495                                    fd,
496                                    contents,
497                                    length,
498                                    error);
499     }
500   else
501     {
502       FILE *f;
503
504       f = fdopen (fd, "r");
505       
506       if (f == NULL)
507         {
508           g_set_error (error,
509                        G_FILE_ERROR,
510                        g_file_error_from_errno (errno),
511                        _("Failed to open file '%s': fdopen() failed: %s"),
512                        filename, g_strerror (errno));
513           
514           return FALSE;
515         }
516   
517       return get_contents_stdio (filename, f, contents, length, error);
518     }
519 }
520
521 #else  /* G_OS_WIN32 */
522
523 static gboolean
524 get_contents_win32 (const gchar *filename,
525                     gchar      **contents,
526                     gsize       *length,
527                     GError     **error)
528 {
529   FILE *f;
530
531   /* I guess you want binary mode; maybe you want text sometimes? */
532   f = fopen (filename, "rb");
533
534   if (f == NULL)
535     {
536       g_set_error (error,
537                    G_FILE_ERROR,
538                    g_file_error_from_errno (errno),
539                    _("Failed to open file '%s': %s"),
540                    filename, g_strerror (errno));
541       
542       return FALSE;
543     }
544   
545   return get_contents_stdio (filename, f, contents, length, error);
546 }
547
548 #endif
549
550 /**
551  * g_file_get_contents:
552  * @filename: a file to read contents from
553  * @contents: location to store an allocated string
554  * @length: location to store length in bytes of the contents
555  * @error: return location for a #GError
556  * 
557  * Reads an entire file into allocated memory, with good error
558  * checking. If @error is set, %FALSE is returned, and @contents is set
559  * to %NULL. If %TRUE is returned, @error will not be set, and @contents
560  * will be set to the file contents.  The string stored in @contents
561  * will be nul-terminated, so for text files you can pass %NULL for the
562  * @length argument.  The error domain is #G_FILE_ERROR. Possible
563  * error codes are those in the #GFileError enumeration.
564  *
565  * Return value: %TRUE on success, %FALSE if error is set
566  **/
567 gboolean
568 g_file_get_contents (const gchar *filename,
569                      gchar      **contents,
570                      gsize       *length,
571                      GError     **error)
572 {  
573   g_return_val_if_fail (filename != NULL, FALSE);
574   g_return_val_if_fail (contents != NULL, FALSE);
575
576   *contents = NULL;
577   if (length)
578     *length = 0;
579
580 #ifdef G_OS_WIN32
581   return get_contents_win32 (filename, contents, length, error);
582 #else
583   return get_contents_posix (filename, contents, length, error);
584 #endif
585 }
586
587 /*
588  * mkstemp() implementation is from the GNU C library.
589  * Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc.
590  */
591 /**
592  * g_mkstemp:
593  * @tmpl: template filename
594  *
595  * Opens a temporary file. See the <function>mkstemp()</function> documentation
596  * on most UNIX-like systems. This is a portability wrapper, which simply calls 
597  * <function>mkstemp()</function> on systems that have it, and implements 
598  * it in GLib otherwise.
599  *
600  * The parameter is a string that should match the rules for
601  * <function>mkstemp()</function>, i.e. end in "XXXXXX". The X string will 
602  * be modified to form the name of a file that didn't exist.
603  *
604  * Return value: A file handle (as from <function>open()</function>) to the file
605  * opened for reading and writing. The file is opened in binary mode
606  * on platforms where there is a difference. The file handle should be
607  * closed with <function>close()</function>. In case of errors, -1 is returned.
608  */
609 int
610 g_mkstemp (char *tmpl)
611 {
612 #ifdef HAVE_MKSTEMP
613   return mkstemp (tmpl);
614 #else
615   int len;
616   char *XXXXXX;
617   int count, fd;
618   static const char letters[] =
619     "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
620   static const int NLETTERS = sizeof (letters) - 1;
621   glong value;
622   GTimeVal tv;
623   static int counter = 0;
624
625   len = strlen (tmpl);
626   if (len < 6 || strcmp (&tmpl[len - 6], "XXXXXX"))
627     return -1;
628
629   /* This is where the Xs start.  */
630   XXXXXX = &tmpl[len - 6];
631
632   /* Get some more or less random data.  */
633   g_get_current_time (&tv);
634   value = (tv.tv_usec ^ tv.tv_sec) + counter++;
635
636   for (count = 0; count < 100; value += 7777, ++count)
637     {
638       glong v = value;
639
640       /* Fill in the random bits.  */
641       XXXXXX[0] = letters[v % NLETTERS];
642       v /= NLETTERS;
643       XXXXXX[1] = letters[v % NLETTERS];
644       v /= NLETTERS;
645       XXXXXX[2] = letters[v % NLETTERS];
646       v /= NLETTERS;
647       XXXXXX[3] = letters[v % NLETTERS];
648       v /= NLETTERS;
649       XXXXXX[4] = letters[v % NLETTERS];
650       v /= NLETTERS;
651       XXXXXX[5] = letters[v % NLETTERS];
652
653       fd = open (tmpl, O_RDWR | O_CREAT | O_EXCL | O_BINARY, 0600);
654
655       if (fd >= 0)
656         return fd;
657       else if (errno != EEXIST)
658         /* Any other error will apply also to other names we might
659          *  try, and there are 2^32 or so of them, so give up now.
660          */
661         return -1;
662     }
663
664   /* We got out of the loop because we ran out of combinations to try.  */
665   return -1;
666 #endif
667 }
668
669 /**
670  * g_file_open_tmp:
671  * @tmpl: Template for file name, as in g_mkstemp(), basename only
672  * @name_used: location to store actual name used
673  * @error: return location for a #GError
674  *
675  * Opens a file for writing in the preferred directory for temporary
676  * files (as returned by g_get_tmp_dir()). 
677  *
678  * @tmpl should be a string ending with six 'X' characters, as the
679  * parameter to g_mkstemp() (or <function>mkstemp()</function>). 
680  * However, unlike these functions, the template should only be a 
681  * basename, no directory components are allowed. If template is %NULL, 
682  * a default template is used.
683  *
684  * Note that in contrast to g_mkstemp() (and <function>mkstemp()</function>) 
685  * @tmpl is not modified, and might thus be a read-only literal string.
686  *
687  * The actual name used is returned in @name_used if non-%NULL. This
688  * string should be freed with g_free() when not needed any longer.
689  *
690  * Return value: A file handle (as from <function>open()</function>) to 
691  * the file opened for reading and writing. The file is opened in binary 
692  * mode on platforms where there is a difference. The file handle should be
693  * closed with <function>close()</function>. In case of errors, -1 is returned 
694  * and @error will be set.
695  **/
696 int
697 g_file_open_tmp (const char *tmpl,
698                  char      **name_used,
699                  GError    **error)
700 {
701   int retval;
702   const char *tmpdir;
703   char *sep;
704   char *fulltemplate;
705
706   if (tmpl == NULL)
707     tmpl = ".XXXXXX";
708
709   if (strchr (tmpl, G_DIR_SEPARATOR)
710 #ifdef G_OS_WIN32
711       || strchr (tmpl, '/')
712 #endif
713                                     )
714     {
715       g_set_error (error,
716                    G_FILE_ERROR,
717                    G_FILE_ERROR_FAILED,
718                    _("Template '%s' invalid, should not contain a '%s'"),
719                    tmpl, G_DIR_SEPARATOR_S);
720
721       return -1;
722     }
723   
724   if (strlen (tmpl) < 6 ||
725       strcmp (tmpl + strlen (tmpl) - 6, "XXXXXX") != 0)
726     {
727       g_set_error (error,
728                    G_FILE_ERROR,
729                    G_FILE_ERROR_FAILED,
730                    _("Template '%s' doesn't end with XXXXXX"),
731                    tmpl);
732       return -1;
733     }
734
735   tmpdir = g_get_tmp_dir ();
736
737   if (tmpdir [strlen (tmpdir) - 1] == G_DIR_SEPARATOR)
738     sep = "";
739   else
740     sep = G_DIR_SEPARATOR_S;
741
742   fulltemplate = g_strconcat (tmpdir, sep, tmpl, NULL);
743
744   retval = g_mkstemp (fulltemplate);
745
746   if (retval == -1)
747     {
748       g_set_error (error,
749                    G_FILE_ERROR,
750                    g_file_error_from_errno (errno),
751                    _("Failed to create file '%s': %s"),
752                    fulltemplate, g_strerror (errno));
753       g_free (fulltemplate);
754       return -1;
755     }
756
757   if (name_used)
758     *name_used = fulltemplate;
759   else
760     g_free (fulltemplate);
761
762   return retval;
763 }
764
765 static gchar *
766 g_build_pathv (const gchar *separator,
767                const gchar *first_element,
768                va_list      args)
769 {
770   GString *result;
771   gint separator_len = strlen (separator);
772   gboolean is_first = TRUE;
773   const gchar *next_element;
774
775   result = g_string_new (NULL);
776
777   next_element = first_element;
778
779   while (TRUE)
780     {
781       const gchar *element;
782       const gchar *start;
783       const gchar *end;
784
785       if (next_element)
786         {
787           element = next_element;
788           next_element = va_arg (args, gchar *);
789         }
790       else
791         break;
792
793       start = element;
794       
795       if (is_first)
796         is_first = FALSE;
797       else if (separator_len)
798         {
799           while (start &&
800                  strncmp (start, separator, separator_len) == 0)
801             start += separator_len;
802         }
803
804       end = start + strlen (start);
805       
806       if (next_element && separator_len)
807         {
808           while (end > start + separator_len &&
809                  strncmp (end - separator_len, separator, separator_len) == 0)
810             end -= separator_len;
811         }
812
813       if (end > start)
814         {
815           if (result->len > 0)
816             g_string_append (result, separator);
817
818           g_string_append_len (result, start, end - start);
819         }
820     }
821   
822   return g_string_free (result, FALSE);
823 }
824
825 /**
826  * g_build_path:
827  * @separator: a string used to separator the elements of the path.
828  * @first_element: the first element in the path
829  * @Varargs: remaining elements in path
830  * 
831  * Creates a path from a series of elements using @separator as the
832  * separator between elements. At the boundary between two elements,
833  * any trailing occurrences of separator in the first element, or
834  * leading occurrences of separator in the second element are removed
835  * and exactly one copy of the separator is inserted.
836  * 
837  * Return value: a newly-allocated string that must be freed with g_free().
838  **/
839 gchar *
840 g_build_path (const gchar *separator,
841               const gchar *first_element,
842               ...)
843 {
844   gchar *str;
845   va_list args;
846
847   g_return_val_if_fail (separator != NULL, NULL);
848
849   va_start (args, first_element);
850   str = g_build_pathv (separator, first_element, args);
851   va_end (args);
852
853   return str;
854 }
855
856 /**
857  * g_build_filename:
858  * @first_element: the first element in the path
859  * @Varargs: remaining elements in path
860  * 
861  * Creates a filename from a series of elements using the correct
862  * separator for filenames. This function behaves identically
863  * to <literal>g_build_path (G_DIR_SEPARATOR_S, first_element, ....)</literal>.
864  *
865  * No attempt is made to force the resulting filename to be an absolute
866  * path. If the first element is a relative path, the result will
867  * be a relative path. 
868  * 
869  * Return value: a newly-allocated string that must be freed with g_free().
870  **/
871 gchar *
872 g_build_filename (const gchar *first_element, 
873                   ...)
874 {
875   gchar *str;
876   va_list args;
877
878   va_start (args, first_element);
879   str = g_build_pathv (G_DIR_SEPARATOR_S, first_element, args);
880   va_end (args);
881
882   return str;
883 }