aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-importer.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r--shell/e-shell-importer.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c
index ff0600ab98..e28a339191 100644
--- a/shell/e-shell-importer.c
+++ b/shell/e-shell-importer.c
@@ -25,6 +25,10 @@
#include <config.h>
#endif
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
#include <glib.h>
#include <libgnome/gnome-defs.h>
#include <libgnome/gnome-i18n.h>
@@ -336,7 +340,18 @@ start_import (const char *folderpath,
ImporterComponentData *icd;
char *label;
char *real_iid;
+ struct stat buf;
+ if (stat (filename, &buf) == -1) {
+ char *message;
+
+ message = g_strdup_printf (_("File %s does not exist"), filename);
+ e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, message);
+ g_free (message);
+
+ return;
+ }
+
if (iid == NULL || strcmp (iid, "Automatic") == 0) {
/* Work out the component to use */
real_iid = get_iid_for_filetype (filename);