"TMP_DIR"

This commit is contained in:
Doug Le Tough 2018-02-19 09:57:32 +01:00
parent dce2d591ee
commit 083437b10d
2 changed files with 2 additions and 0 deletions

View File

@ -98,6 +98,7 @@ case "${L_Cmd}" in
fct_message -debug 0 "<lib:fct_erreur> Nettoyage des fichiers temporaires de la session ${SH_SESSION_ID}" fct_message -debug 0 "<lib:fct_erreur> Nettoyage des fichiers temporaires de la session ${SH_SESSION_ID}"
if [ -n "${NC_EXPL_TMP}" -a -n "${SH_SESSION_ID}" -a "${NC_EXPL_TMP}" != "/" -a "${NC_EXPL_TMP}" != "." ] if [ -n "${NC_EXPL_TMP}" -a -n "${SH_SESSION_ID}" -a "${NC_EXPL_TMP}" != "/" -a "${NC_EXPL_TMP}" != "." ]
then then
fct_message "Supression du repertoire temporaire"
rm -f "${NC_EXPL_TMP}/*${SH_SESSION_ID}*" rm -f "${NC_EXPL_TMP}/*${SH_SESSION_ID}*"
rm -Rf ${SH_TMP_DIR} rm -Rf ${SH_TMP_DIR}
else else

View File

@ -54,6 +54,7 @@
function fct_mk_tmp_dir function fct_mk_tmp_dir
{ {
fct_message "Creation du repertoire temporaire"
mkdir -p ${NC_EXPL_TMP}/${SH_SESSION_ID} mkdir -p ${NC_EXPL_TMP}/${SH_SESSION_ID}
RET_VAL=$? RET_VAL=$?
if [ ! ${RET_VAL} -eq 0 ]; then if [ ! ${RET_VAL} -eq 0 ]; then