Simulink Projects File Revision Number Programatically?

4 ビュー (過去 30 日間)
iain Carrie
iain Carrie 2015 年 4 月 3 日
編集済み: Tim Hosey 2016 年 9 月 26 日
I need to get the Simulink Projects / SVN revision number of specific files programmatically. Of course this info is available in the Simulink Project browser so should be available programmatically? I cant find documentation on this (that's not to say it doesn't exist). It would also be useful to tell if the file has been modified compared to the SVN version (currently shown as a green circle or blue square in the projects browser)

回答 (1 件)

Tim Hosey
Tim Hosey 2016 年 9 月 26 日
編集済み: Tim Hosey 2016 年 9 月 26 日
This functionality was added to the Simulink Project's MATLAB API for R2016a.
The listmodifiedfiles function can be used to get the list of files that have been modified in your working copy.
Properties for source control status and file revision have also been added to the ProjectFile object instances:
>> project = simulinkproject; >> files = project.Files
files = project.Files
files =
1×33 ProjectFile array with properties:
Path
Labels
Revision
SourceControlStatus

カテゴリ

Help Center および File ExchangeProject Management についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by