blob: ba9d483ac2af7cc0804cadd54229840b3cba3a52 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/*
* Sets up the ~/evolution directory
*
* Author:
* Miguel de Icaza (miguel@kernel.org)
*
* (C) 2000 Helix Code, Inc. http://www.helixcode.com
*/
#include <config.h>
#include <sys/stat.h>
#include <unistd.h>
#include <gnome.h>
#include "e-setup.h"
char *evolution_dir = NULL;
char *evolution_folders_dir = NULL;
char *evolution_private = NULL;
char *evolution_public = NULL;
gboolean
e_setup_base_dir (void)
{
struct stat s;
evolution_dir = gnome_config_get_string("/Evolution/directories/home");
if (!evolution_dir) evolution_dir =
g_concat_dir_and_file (g_get_home_dir (), "evolution");
if (stat (evolution_dir, &s) == -1){
if (mkdir (evolution_dir, S_IRWXU) == -1){
return FALSE;
}
} else {
if (!S_ISDIR (s.st_mode)){
char *msg;
g_error ("Finish implementing this");
msg = g_strdup_printf (
_("Evolution detected that the file `%s' is a not a directory.\n"
"\n"
"Evolution can rename the file, delete the file or shutdown and\n"
"let you fix the problem."),
evolution_dir);
return FALSE;
}
}
evolution_folders_dir = g_concat_dir_and_file (evolution_dir, "folders");
mkdir (evolution_folders_dir, S_IRWXU);
gnome_config_set_string ("/Evolution/directories/home",
evolution_dir);
gnome_config_sync();
return TRUE;
}
|