Effacer les filtres
Effacer les filtres

Receiving writing-related error message while running a dmg app

1 vue (au cours des 30 derniers jours)
Melanie VT
Melanie VT le 28 Fév 2023
Commenté : Melanie VT le 7 Mar 2023
Hi,
I’m receiving the below error message while running a dmg app created via Application Compiler.
I’m using macOS Monterey (v12). I checked all Security & Privacy configurations and enabled every possible option. The interesting thing is that when I run the m file inside Matlab, it generates the outputs successfully. Any ideas on how to handle this issue?
Thanks in advance,
Mel
  1 commentaire
Walter Roberson
Walter Roberson le 28 Fév 2023
Modifié(e) : Walter Roberson le 28 Fév 2023
I see this claim, but I do not know if it is accurate:
The instructions at https://www.techwalla.com/articles/how-to-edit-dmg are more along the lines of what I have read in the past.

Connectez-vous pour commenter.

Réponse acceptée

Melanie VT
Melanie VT le 7 Mar 2023
Thank you very much @Walter Roberson. It turns out that dmg files compiled by Application Compiler cannot write to relative file paths. Changing relative paths into absolute ones solved my problem!
E.g.
Changing this:
writetable(data, 'file.xlsx')
into this:
writetable(data, fullfile(path, 'file.xlsx'))
Cheers,
Mel
  2 commentaires
Walter Roberson
Walter Roberson le 7 Mar 2023
That would hint that your current directory is not what you expect
Melanie VT
Melanie VT le 7 Mar 2023
As a matter of fact, it is. Because as I mentioned in my first message, the same m.file (that the dmg application is compiled) generates outputs successfully through Matlab Command Window in the same computer. However, the permission is somehow not granted when the same request is sent from the dmg application.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Application Deployment dans Help Center et File Exchange

Produits


Version

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by