Patch level :2.1 32

Files correlati     :xvagadll.dll
Ricompilazione Demo : [ ]
Commento            :risolto il problema legato al Ba1 error in fase di installazione moduli;
aggiunto il controllo di precedente esistenza della directory nel metodo di creazione della
stessa; riportato anche sulla remove directory


git-svn-id: svn://10.65.10.50/trunk@12047 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2004-05-03 16:04:18 +00:00
parent 2296b04f79
commit 5e9712217e

View File

@ -4073,11 +4073,15 @@ BOOLEAN xvt_fsys_file_exists(const char *pathname)
BOOLEAN xvt_fsys_mkdir(const char *pathname)
{
if (wxDirExists(pathname))
return TRUE;
return wxMkdir(pathname);
}
BOOLEAN xvt_fsys_rmdir(const char *pathname)
{
if (wxDirExists(pathname))
return TRUE;
return wxRmdir(pathname);
}