Can I work with two versions of an application under separate folders but with the same filenames?

2 次查看(过去 30 天)
Hi,
Is it possible to simultaneously work on two (or more) versions of the same application, sharing the same set of filenames but under different main folders, without risking conflicts? I also need to be able to deploy .exe files from the different versions. What will the compiler say when it discoveres recurring m-files? Or perhaps there is a better way to manage multiple versions of an application?
Thanks

采纳的回答

Walter Roberson
Walter Roberson 2015-5-12
The .m files are packaged up in pre-compiled and encrypted format. When the application runs, a temporary directory is created and the files are unpacked into there (still in pre-compiled form), and the path for the executable is set to that directory. A different executable would unpack to a different directory and its path would be set appropriately. There will be no conflict.

更多回答(1 个)

Spigge
Spigge 2015-5-12
Thanks Walter, that sorts out my compilation worries.
But how is it in general, prior to compilation: If I have two folders, Folder1 and Folder2, both in the Matlab path and I run a script in Folder1 that calls the script "calculate.m" that exists under both folders. How do I know which version of calculate.m will be executed? Don't I need to, temporarily by an appropriate script, remove Folder2 from the path to be sure to execute calculate.m under Folder1?
Thanks
  1 个评论
Walter Roberson
Walter Roberson 2015-5-12
Folders earlier on the path are used first.
Consider using different startup.m to use different search paths. This will depend upon you invoking MATLAB from the proper directory rather than just clicking on an icon, though. (Unless you create different icons to set different startup values.)

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 MATLAB Compiler 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by