Adding a folder when building an standalone application

5 ビュー (過去 30 日間)
Vasista Adupa
Vasista Adupa 2020 年 7 月 27 日
回答済み: Steven Lord 2020 年 7 月 27 日
Hi, I am creating a .exe for a main file, when run, opens a app, where a button call's a .m file (myfile.m). using command
MAIN FILE (trail.mlapp). Part of the .mlapp file.
function ButtonPushed(app,event)
run myfile.m
closereq
end
This myfile.m also calls an another app in the middle (just an matlab app) not the exe. For this app to execute properly (to avoid shadowing), It asked me to create a folder (let's say X) and put the matlab app related files in there.
Now while creating a .exe file, I am not able to add the folder X. Is there anyway to do it.
I looked up in some previous answers, they said
if isdeployed
fid = fopen(fullfile(ctfroot,'myfolder','myfile.dat'))
end
But I don't know where to place this piece of code, whether in myfile.m or my main file for which I am creating the executable.
I am calling the inner app using this following commands
APPINFO = matlab.apputil.install('./X/Recomm')
matlab.apputil.run('RecommAPP')
  2 件のコメント
Steven Lord
Steven Lord 2020 年 7 月 27 日
Are you trying to run a piece of code that is not available when the application is created but is specified at runtime?
Vasista Adupa
Vasista Adupa 2020 年 7 月 27 日
Yes. Exactly.

サインインしてコメントする。

回答 (1 件)

Steven Lord
Steven Lord 2020 年 7 月 27 日
You cannot have a standalone application run code that was not compiled into the application when it was created. From the documentation "The MATLAB Runtime only works on MATLAB code that was encrypted when the deployable archive was built. Any function or process that dynamically generates new MATLAB code will not work against the MATLAB Runtime."

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by