[evolution-ews] EBookBackendSqliteDB: ensure existence of parent directory for DB files
- From: Chenthill Palanisamy <pchen src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-ews] EBookBackendSqliteDB: ensure existence of parent directory for DB files
- Date: Thu, 19 May 2011 10:35:06 +0000 (UTC)
commit 18a399adcbfd2d4c142caa4f8f2877de837655cb
Author: Sean Finney <seanius seanius net>
Date: Tue May 17 13:56:01 2011 +0000
EBookBackendSqliteDB: ensure existence of parent directory for DB files
Signed-off-by: Sean Finney <seanius seanius net>
src/addressbook/e-book-backend-sqlitedb.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/src/addressbook/e-book-backend-sqlitedb.c b/src/addressbook/e-book-backend-sqlitedb.c
index d555e17..561fb97 100644
--- a/src/addressbook/e-book-backend-sqlitedb.c
+++ b/src/addressbook/e-book-backend-sqlitedb.c
@@ -22,6 +22,7 @@
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
+#include <errno.h>
#include <glib/gi18n.h>
#include <glib/gstdio.h>
@@ -462,6 +463,11 @@ e_book_backend_sqlitedb_new (const gchar *path,
ebsdb = g_object_new (E_TYPE_BOOK_BACKEND_SQLITEDB, NULL);
ebsdb->priv->path = g_strdup (path);
ebsdb->priv->vcard_as_files = vcard_as_files;
+ if (g_mkdir_with_parents (path, 0777) < 0) {
+ g_set_error (error, E_BOOK_SDB_ERROR,
+ 0, "Can not make parent directory: errno %d", errno);
+ return NULL;
+ }
filename = g_build_filename (path, DB_FILENAME, NULL);
book_backend_sqlitedb_load (ebsdb, filename, &err);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]