version 1.7, 2004/10/08 17:17:36
|
version 1.8, 2004/10/09 15:49:35
|
Line 9
|
Line 9
|
# ========
|
# ========
|
#
|
#
|
# $Log$ |
# $Log$ |
|
# Revision 1.8 2004/10/09 15:49:35 oertel |
|
# win ver 9.30.1 |
|
# suporting profiles.ini for TB >= 0.8 and FF >= 0.9 |
|
# update 1: bugfix in creating aplication data directories |
|
# |
# Revision 1.7 2004/10/08 17:17:36 oertel |
# Revision 1.7 2004/10/08 17:17:36 oertel |
# win ver 9.30.1 |
# win ver 9.30.1 |
# suporting profiles.ini for TB >= 0.8 and FF >= 0.9 |
# suporting profiles.ini for TB >= 0.8 and FF >= 0.9 |
Line 371 begin
|
Line 376 begin
|
// Check for validty and complete input data
|
// Check for validty and complete input data
|
if not DirectoryExists(mozprofparentdir) then
|
if not DirectoryExists(mozprofparentdir) then
|
begin
|
begin
|
System.MkDir(mozprofparentdir);
| if Sysutils.ForceDirectories(mozprofparentdir) then
|
writelog(Format(getMsg('dir_created'),[mozprofparentdir]));
| begin
|
| writelog(Format(getMsg('dir_created'),[mozprofparentdir]));
|
| end
|
| else
|
| begin
|
| writelog('Failed creating directories: '+mozprofparentdir);
|
| end;
|
end;
|
end;
|
if not DirectoryExists(mozprofparentdir) then
|
if not DirectoryExists(mozprofparentdir) then
|
begin
|
begin
|