- Timestamp:
- 06/09/08 16:47:30 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Jav_GE/com/scenari/m/ge/generator/web/WebGenerator.java
r10987 r11168 266 266 */ 267 267 public void wPurgePages(IWInstFormation pInstance, IWUser pActeur, String pMode, String pSupport, String pLangue) throws Exception { 268 fDestFolderCo.hRemove();268 xRemoveDst(fDestFolderCo); 269 269 //Controle que tous les fichiers ont été supprimés. 270 270 List vList = fDestFolderCo.hGetNameChilds(IHSource.ALL_STATUS, null); 271 271 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); 273 273 //Controle que tous les fichiers ont été supprimés. 274 274 vList = fDestFolderMutableDst.hGetNameChilds(IHSource.ALL_STATUS, null); … … 399 399 wAddTraceLogMessage(IHLogMessage.TYPE_WARNING, HLogMgr.hGetMessage(e)); 400 400 try { 401 vDst.hRemove();401 xRemoveDst(vDst); 402 402 } catch (Exception ee) { 403 403 } … … 521 521 wAddTraceLogMessage(IHLogMessage.TYPE_WARNING, HLogMgr.hGetMessage(e)); 522 522 try { 523 vDst.hRemove();523 xRemoveDst(vDst); 524 524 } catch (Exception ee) { 525 525 }
Note: See TracChangeset
for help on using the changeset viewer.