How do I use a .exe compiled with an app in app designer?

6 次查看(过去 30 天)
I have designed an app in app designer, this runs with no problems.
One of the functions of the app is to run a small .exe that processes some data (let's call it analysis.exe). When designing the app I call analysis.exe via the system command using its filepath.
I have finished my app now, when I compile it I would like to add analysis.exe as a required file, so it is compiled with the rest of the program, but then how do I call it within the app? Is this the correct way to go about it?
Should I instead leave analysis.exe as a standalone, but then how can I know what its filepath will be when I give the program to a new user?
Thanks for any help.

采纳的回答

Matt J
Matt J 2024-11-28
编辑:Matt J 2024-11-28
If you are using the deploytool app to compile, you can include analysis.exe via the section "Files required for your application to run". This will cause analysis.exe to be bundled into the deployed package, and for it to be unpacked into the CTF archive when your deployed standalone is run. Within your MATLAB code, you can build the filepath needed to reference it using ctfroot, e.g.,
if isdeployed
exePath=fullfile(ctfroot,'analysis.exe')
else
exePath=____
end
  7 个评论
Matt J
Matt J 2024-12-12
If you told deploytool to include Users\data\stuff\GitHub\analysis.exe, then yes, it is normal.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Standalone Applications 的更多信息

标签

产品


版本

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by