Matlab Compiler: Is "userpath" always there and accessible?
Afficher commentaires plus anciens
Dear all,
my compiled app needs to store some temporary files in the background. Is it safe to assume that the directory given by userpath will exist on all computers? And that we will always have write access to this folder?
Thanks!!
William
3 commentaires
Stephen23
le 27 Nov 2024
Although MATLAB creates this folder on startup/userpath-reset there is nothing stopping a user from deleting that folder or changing its permissions.
Calling USERPATH RESET immediately before you need to use it might be sufficient to ensure that it exists. But there is not much you can do about the permissions: fundamentally folder permissions are something the OS controls, not MATLAB.
William Thielicke
le 27 Nov 2024
William Thielicke
le 27 Nov 2024
Réponses (1)
Steven Lord
le 27 Nov 2024
0 votes
2 commentaires
William Thielicke
le 30 Nov 2024
Steven Lord
le 30 Nov 2024
It ought to return a folder name, unless perhaps a user has done something unusual with certain environmental variables. The documentation says that the folder is not guaranteed to exist, but you can check that with exist and use mkdir to create the directory if it does not exist yet.
Catégories
En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!