From 10faf1410582cd7aec208a63fd0a65638f6a9de3 Mon Sep 17 00:00:00 2001 From: hiro Date: Mon, 8 Aug 2005 08:38:28 +0000 Subject: use GDir instead of directly using opendir(). git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@479 ee746299-78ed-0310-b773-934348b2243d --- src/codeconv.c | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'src/codeconv.c') diff --git a/src/codeconv.c b/src/codeconv.c index b2d3e2b6..4eb68b78 100644 --- a/src/codeconv.c +++ b/src/codeconv.c @@ -1917,27 +1917,24 @@ gint conv_copy_file(const gchar *src, const gchar *dest, const gchar *encoding) gint conv_copy_dir(const gchar *src, const gchar *dest, const gchar *encoding) { - DIR *dp; - struct dirent *d; + GDir *dir; + const gchar *dir_name; gchar *src_file; gchar *dest_file; - if ((dp = opendir(src)) == NULL) { - FILE_OP_ERROR(src, "opendir"); + if ((dir = g_dir_open(src, 0, NULL)) == NULL) { + g_warning("failed to open directory: %s\n", src); return -1; } if (make_dir_hier(dest) < 0) { - closedir(dp); + g_dir_close(dir); 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, + while ((dir_name = g_dir_read_name(dir)) != NULL) { + src_file = g_strconcat(src, G_DIR_SEPARATOR_S, dir_name, NULL); + dest_file = g_strconcat(dest, G_DIR_SEPARATOR_S, dir_name, NULL); if (is_file_exist(src_file)) conv_copy_file(src_file, dest_file, encoding); @@ -1945,7 +1942,7 @@ gint conv_copy_dir(const gchar *src, const gchar *dest, const gchar *encoding) g_free(src_file); } - closedir(dp); + g_dir_close(dir); return 0; } -- cgit v1.2.3