Implement preliminary support for XDG Base Directory Specification.
[geeqie.git] / src / ui_fileops.h
1 /*
2  * (SLIK) SimpLIstic sKin functions
3  * (C) 2004 John Ellis
4  * Copyright (C) 2008 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13
14 #ifndef UI_FILEOPS_H
15 #define UI_FILEOPS_H
16
17
18 #include <sys/stat.h>
19 #include <sys/time.h>
20 #include <sys/types.h>
21 #include <time.h>
22
23
24
25 void print_term(const gchar *text_utf8);
26
27 #define printf_term(...) \
28         do { \
29                 gchar *msg = g_strdup_printf(__VA_ARGS__); \
30                 print_term(msg); \
31                 g_free(msg); \
32         } while (0)
33
34 gchar *path_to_utf8(const gchar *path);
35 gchar *path_from_utf8(const gchar *path);
36
37 const gchar *xdg_data_home_get(void);
38 const gchar *xdg_config_home_get(void);
39 const gchar *xdg_cache_home_get(void);
40 const gchar *homedir(void);
41 const gchar *get_rc_dir(void);
42 const gchar *get_collections_dir(void);
43 const gchar *get_trash_dir(void);
44
45 gint stat_utf8(const gchar *s, struct stat *st);
46 gint lstat_utf8(const gchar *s, struct stat *st);
47 gint isname(const gchar *s);
48 gint isfile(const gchar *s);
49 gint isdir(const gchar *s);
50 gint islink(const gchar *s);
51 gint64 filesize(const gchar *s);
52 time_t filetime(const gchar *s);
53 gint filetime_set(const gchar *s, time_t tval);
54 gint access_file(const gchar *s, gint mode);
55 gint unlink_file(const gchar *s);
56 gint symlink_utf8(const gchar *source, const gchar *target);
57 gint mkdir_utf8(const gchar *s, gint mode);
58 gint rmdir_utf8(const gchar *s);
59 gint copy_file_attributes(const gchar *s, const gchar *t, gint perms, gint mtime);
60 gint copy_file(const gchar *s, const gchar *t);
61 gint move_file(const gchar *s, const gchar *t);
62 gint rename_file(const gchar *s, const gchar *t);
63 gchar *get_current_dir(void);
64
65 /* return True on success, it is up to you to free
66  * the lists with string_list_free()
67  */
68 void string_list_free(GList *list);
69 GList *string_list_copy(GList *list);
70
71 gchar *unique_filename(const gchar *path, const gchar *ext, const gchar *divider, gint pad);
72 gchar *unique_filename_simple(const gchar *path);
73
74 const gchar *filename_from_path(const gchar *path);
75 gchar *remove_level_from_path(const gchar *path);
76
77 const gchar *extension_from_path(const gchar *path);
78 gchar *remove_extension_from_path(const gchar *path);
79
80 gint file_extension_match(const gchar *path, const gchar *ext);
81
82 /* warning note: this modifies path string! */
83 void parse_out_relatives(gchar *path);
84
85 gint file_in_path(const gchar *name);
86
87 gboolean recursive_mkdir_if_not_exists(gchar *path, mode_t mode);
88
89 #endif
90 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */