aboutsummaryrefslogtreecommitdiff
path: root/src/codeconv.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-20 10:48:53 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-20 10:48:53 +0000
commit213dad2c099e381de87461c1e753bc6a4b83ac36 (patch)
tree9c987b078eaea764ec3eb4d1f53bad53459a64d4 /src/codeconv.c
parenta5fddd5b417a3aff4e4f1771a45763c280df0823 (diff)
also migrate templates.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@25 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/codeconv.c')
-rw-r--r--src/codeconv.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/codeconv.c b/src/codeconv.c
index 3502f1d3..28659b2f 100644
--- a/src/codeconv.c
+++ b/src/codeconv.c
@@ -1812,3 +1812,38 @@ gint conv_copy_file(const gchar *src, const gchar *dest, const gchar *encoding)
return 0;
}
+
+gint conv_copy_dir(const gchar *src, const gchar *dest, const gchar *encoding)
+{
+ DIR *dp;
+ struct dirent *d;
+ gchar *src_file;
+ gchar *dest_file;
+
+ if ((dp = opendir(src)) == NULL) {
+ FILE_OP_ERROR(src, "opendir");
+ return -1;
+ }
+
+ if (make_dir_hier(dest) < 0) {
+ closedir(dp);
+ return -1;
+ }
+
+ while ((d = readdir(dp)) != NULL) {
+ if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
+ continue;
+
+ src_file = g_strconcat(src, G_DIR_SEPARATOR_S, d->d_name, NULL);
+ dest_file = g_strconcat(dest, G_DIR_SEPARATOR_S, d->d_name,
+ NULL);
+ if (is_file_exist(src_file))
+ conv_copy_file(src_file, dest_file, encoding);
+ g_free(dest_file);
+ g_free(src_file);
+ }
+
+ closedir(dp);
+
+ return 0;
+}