Mercurial > geeqie
annotate src/ui_fileops.h @ 1148:95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
author | zas_ |
---|---|
date | Sat, 15 Nov 2008 20:01:25 +0000 |
parents | 3a7af6a8cd5f |
children | c4fcf8001574 |
rev | line source |
---|---|
9 | 1 /* |
2 * (SLIK) SimpLIstic sKin functions | |
3 * (C) 2004 John Ellis | |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 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 | |
403 | 27 #define printf_term(...) \ |
28 do { \ | |
29 gchar *msg = g_strdup_printf(__VA_ARGS__); \ | |
30 print_term(msg); \ | |
31 g_free(msg); \ | |
442 | 32 } while (0) |
403 | 33 |
9 | 34 gchar *path_to_utf8(const gchar *path); |
35 gchar *path_from_utf8(const gchar *path); | |
36 | |
37 const gchar *homedir(void); | |
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
38 const gchar *get_rc_dir(void); |
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
39 const gchar *get_collections_dir(void); |
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
40 const gchar *get_trash_dir(void); |
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1055
diff
changeset
|
41 |
9 | 42 gint stat_utf8(const gchar *s, struct stat *st); |
40
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
43 gint lstat_utf8(const gchar *s, struct stat *st); |
9 | 44 gint isname(const gchar *s); |
45 gint isfile(const gchar *s); | |
46 gint isdir(const gchar *s); | |
40
dcc04a6a58bf
Sat Apr 16 12:29:42 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
47 gint islink(const gchar *s); |
9 | 48 gint64 filesize(const gchar *s); |
49 time_t filetime(const gchar *s); | |
50 gint filetime_set(const gchar *s, time_t tval); | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
702
diff
changeset
|
51 gint access_file(const gchar *s, gint mode); |
9 | 52 gint unlink_file(const gchar *s); |
53 gint symlink_utf8(const gchar *source, const gchar *target); | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
702
diff
changeset
|
54 gint mkdir_utf8(const gchar *s, gint mode); |
9 | 55 gint rmdir_utf8(const gchar *s); |
56 gint copy_file_attributes(const gchar *s, const gchar *t, gint perms, gint mtime); | |
57 gint copy_file(const gchar *s, const gchar *t); | |
58 gint move_file(const gchar *s, const gchar *t); | |
59 gint rename_file(const gchar *s, const gchar *t); | |
60 gchar *get_current_dir(void); | |
61 | |
62 /* return True on success, it is up to you to free | |
138 | 63 * the lists with string_list_free() |
9 | 64 */ |
138 | 65 void string_list_free(GList *list); |
66 GList *string_list_copy(GList *list); | |
9 | 67 |
68 gchar *unique_filename(const gchar *path, const gchar *ext, const gchar *divider, gint pad); | |
69 gchar *unique_filename_simple(const gchar *path); | |
70 | |
71 const gchar *filename_from_path(const gchar *path); | |
72 gchar *remove_level_from_path(const gchar *path); | |
73 | |
74 const gchar *extension_from_path(const gchar *path); | |
75 gchar *remove_extension_from_path(const gchar *path); | |
76 | |
77 gint file_extension_match(const gchar *path, const gchar *ext); | |
78 | |
79 /* warning note: this modifies path string! */ | |
80 void parse_out_relatives(gchar *path); | |
81 | |
82 gint file_in_path(const gchar *name); | |
83 | |
1148
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
84 gboolean recursive_mkdir_if_not_exists(gchar *path, mode_t mode); |
95860439070b
Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
zas_
parents:
1145
diff
changeset
|
85 |
9 | 86 #endif |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1000
diff
changeset
|
87 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |