String sSourceDir = sWorkAreasPut + oSource.getString(DB.gu_workarea) + sSep + "apps" + sSep + "Hipermail" + sSep + "html" + sSep + Gadgets.leftPad(String.valueOf(oSource.getInt(DB.pg_mailing)), '0', 5);
String sTargetDir = sWorkAreasPut + getString(DB.gu_workarea) + sSep + "apps" + sSep + "Hipermail" + sSep + "html" + sSep + Gadgets.leftPad(String.valueOf(getInt(DB.pg_mailing)), '0', 5);
try {
FileSystem oFs = new FileSystem();
oFs.mkdirs(sProtocol+sTargetDir);
oFs.copy(sProtocol+sSourceDir, sProtocol+sTargetDir);
} catch (Exception xcpt) {
if (DebugFile.trace) {
DebugFile.decIdent();
DebugFile.writeln(xcpt.getClass().getName()+" "+xcpt.getMessage());