Toutes les traductions

De MappingDoc

Entrez un nom de message ci-dessous pour visualiser toutes les traductions disponibles.

Message

Il existe 2 traductions.

NomMessage actuel
 h anglais (en)=====<u> Deleting XPS conversion and Workflow temporary files </u> =====
These files are located in the /apps/mapping/temp temporary folder.
They are normally deleted automatically. In case of problem (crash, forced interruption…), they may remain in the temporary file.
It is then not a normal situation.
 find /apps/mapping/temp -name "*cri.tmp"    -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "*ttf.tmp"    -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "compress_*"  -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "*.[0-9]"      -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "*.[0-9][0-9]" -mtime +2 -exec rm -f {} \;
 h français (fr)=====<u> Suppression des fichiers temporaires de conversion XPS et de Workflow</u> =====
Ces fichiers se trouvent dans le dossier temporaire /apps/mapping/temp.
Normalement, ils sont supprimés automatiquement. Mais en cas de problème (crash, interruption forcée…), ils peuvent subsister dans le dossier temp.
Ce n’est donc pas une situation normale.
 find /apps/mapping/temp -name "*cri.tmp"    -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "*ttf.tmp"    -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "compress_*"  -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "*.[0-9]"      -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "*.[0-9][0-9]" -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "xps_*"        -mtime +2 -exec rm -f {} \;
 find /apps/mapping/temp -name "tmp_report*"  -mtime +2 -exec rm -f {} \;