Is it possible to automatically delete the mcrCache directory created by a MATLAB Compiled executable after it terminates?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 2 Déc 2009
Modifié(e) : MathWorks Support Team
le 17 Mar 2025
There should be some option in MATLAB Compiler to direct the created executable to remove all the data (CTF extracted) added during the running of the program.
Essentially, there should a mechanism for the executable to clean up the mcrCache directories after termination.
Réponse acceptée
MathWorks Support Team
le 17 Mar 2025
Modifié(e) : MathWorks Support Team
le 17 Mar 2025
The ability to automatically clean up the mcrcache is not available in the MATLAB Compiler.
To work around this issue, you can create a small BAT file that can set up the environment, run the exe and then clean up afterwards.
@echo off
cls
set MCR_CACHE_ROOT=C:\Temp
Start complete path to your exe
pause
rm -r C:\Temp\mcrCache7*
Caveat: If you do this though, I think that subsequent runs of your program might take longer to launch because all the files in the CTF will have to be unpacked and recreated, whereas if you left them it wouldn't have to do that all over again.
1 commentaire
Image Analyst
le 21 Déc 2016
If you do this though, I think that subsequent runs of your program might take longer to launch because all the files in the CTF will have to be unpacked and recreated, whereas if you left them it wouldn't have to do that all over again.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Application Deployment dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!