Errors in executable file which is created from AppDesigner .
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi,
I have created one app which takes input as a path and if you press the button it loads specific .mat file from that path.
This is how app looks like
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/726544/image.png)
When I run .exe / standalone app , it gives following error in cmd.
'Error using matlabpath
Modifying the search path is not supported by MATLAB Compiler. Remove functions that modify the search path from your MATLAB code. To make files visible to your deployed application, add the parent folder to your MATLAB session.'
How to get ride of this issue ? or is it not possible in standalone app ?
this is how main part of code look like
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/726549/image.png)
댓글 수: 1
채택된 답변
Gopinath Karuppannan
2021년 9월 1일
편집: Gopinath Karuppannan
2021년 9월 1일
Hi
You should not use the 'addpath' command (static) while creating the standalone executable file. Instead you can the get the directry information using uigetdir() as a dynamic. It avoids the error.
댓글 수: 2
Gopinath Karuppannan
2021년 9월 1일
uigetdir() --> it allows the user to select the working directory and return the path of the folder. So you can save the path in variable.[link:https://in.mathworks.com/help/matlab/ref/uigetdir.html]. Refer the following example:
pathname = uigetdir();
dir(fullfile(pathname,'*.mat'));
Hope it helps.
추가 답변 (2개)
Matt J
2021년 9월 1일
Remove this line from your code
addpath(direct)
It's not doing anything anyway.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Compiler에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!