Ignore:
Timestamp:
06/09/08 16:47:30 (4 years ago)
Author:
sys
Message:

Vérification suprression des générations (bug aléatoire windows).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Jav_GE/com/scenari/m/ge/generator/web/WebGenerator.java

    r10987 r11168  
    266266         */ 
    267267        public void wPurgePages(IWInstFormation pInstance, IWUser pActeur, String pMode, String pSupport, String pLangue) throws Exception { 
    268                 fDestFolderCo.hRemove(); 
     268                xRemoveDst(fDestFolderCo); 
    269269                //Controle que tous les fichiers ont été supprimés. 
    270270                List vList = fDestFolderCo.hGetNameChilds(IHSource.ALL_STATUS, null); 
    271271                if (vList != null && vList.size() > 0) { throw HLogMgr.hNewException("Tous les fichiers n'ont pu être supprimés avant la génération dans le dossier de destination (dossier '" + fDestFolderCo.hGetUri() + "') : " + fDestFolderCo); } 
    272                 fDestFolderMutableDst.hRemove(); 
     272                xRemoveDst(fDestFolderMutableDst); 
    273273                //Controle que tous les fichiers ont été supprimés. 
    274274                vList = fDestFolderMutableDst.hGetNameChilds(IHSource.ALL_STATUS, null); 
     
    399399                                                        wAddTraceLogMessage(IHLogMessage.TYPE_WARNING, HLogMgr.hGetMessage(e)); 
    400400                                                        try { 
    401                                                                 vDst.hRemove(); 
     401                                                                xRemoveDst(vDst); 
    402402                                                        } catch (Exception ee) { 
    403403                                                        } 
     
    521521                                wAddTraceLogMessage(IHLogMessage.TYPE_WARNING, HLogMgr.hGetMessage(e)); 
    522522                                try { 
    523                                         vDst.hRemove(); 
     523                                        xRemoveDst(vDst); 
    524524                                } catch (Exception ee) { 
    525525                                } 
Note: See TracChangeset for help on using the changeset viewer.