Additional (configuration) Files in compiled standalone application
3 次查看(过去 30 天)
显示 更早的评论
Hello,
I need to write a standalone GUI application using R2010b (specified by customer, I would be happe to use a newer version...).
I would like to include at least one configuration file in Excel format (*.xlsx) to give the user some flexibility to configure the tool (e.g. labels of measurement quantitities which change over time). I would like the user to be able to change this file in place and the tool shall use the changed file when the tool ist started next. I want to avoid that the file is stored outside my distributed directory and that the user needs to specify where it is (at least) the first time the tool ist started.
I am able to include the xlsx-file in my code such that the compiled version works correctly and obviously uses it. However, the file is not to be found in the directory distrib created by the compiler. It ssems to be included in the *.exe.
Is it possible to do what I want? If yes - how? If not - is it at least possible to include a template file for the xlsx which the user can get from the distributed directory without having to add it manually each time I create a new version of the tool?
0 个评论
采纳的回答
Walter Roberson
2016-1-11
You can use which() in the executable to determine where the file ended up when you added it to the project
If the location of the file is to be understood to be per-user then you may wish to look at setpref() / getpref() to save information between runs. One of the bits of saved information could be a date that you could compare to the file creation date returned by dir()
3 个评论
Walter Roberson
2016-1-11
Programs are mostly started from icons, and icons are not in any particular directory. But if you meant the location of the .exe then see http://www.mathworks.com/matlabcentral/answers/182482-how-to-determine-application-exe-name-at-run-time
更多回答(1 个)
Titus Edelhofer
2016-1-11
Hi,
I would suggest the following:
- Add the .xlsx to the compiled app
- When the application starts and wants to read the .xlsx make a distinction: if it exists in the folder where the compiled app is, use it. Otherwise read from the archive and save it where the compiled app is (using pwd), so that the user may adapt for the next run.
Titus
2 个评论
Titus Edelhofer
2016-1-11
Hi Jette,
Walter cites a thread for finding out the location of the .exe ...
Titus
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!