Unable to close or recreate a dictionary because it is already open, but it's actually not...

조회 수: 16 (최근 30일)
Error using myScript
Unable to create or open data dictionary
'C:\temp\my_dict.sldd'
because another dictionary with the same file name is already open. To create or open this dictionary, close all
open dictionaries by calling 'Simulink.data.dictionary.closeAll' and reopen.
Open file:
'C:\temp\my_dict.sldd'
However >> Simulink.data.dictionary.getOpenDictionaryPaths does not show the complained file and eventually because of that
>> Simulink.data.dictionary.closeAll('my_dict.sldd', '-discard') does not seem to have any effect or or at least does not solve the problem.
Why is the dictionary Matlab is complaining about not shown in the list of open dictionaries?
And how can I fix this?
>> Simulink.data.dictionary.closeAll('-discard') to wipe all works but is not an option because this would lead to failures in the following processes because of the dictionaries that are also closed but are still needed...
p.s. the old dictionary has already been wiped from the disk at the point of the test which also cannot be revoked or changed.

답변 (1개)

Vinay
Vinay 2025년 6월 18일
To delete the Simulink data dictionary, run the following commands in the MATLAB Command Window:
clear my_dictDictObj; % Clear the dictionary object from the workspace
Simulink.data.dictionary.closeAll('my_dict.sldd','-discard');
delete('my_dict.sldd');
This ensures that "my_dict.sldd" is fully cleared from memory and a new dictionary can be created with the same name using
Simulink.data.dictionary.create('my_dict.sldd');
Hope this helps!
  댓글 수: 1
Marcus
Marcus 2025년 7월 30일
This does not work as per my initial post
a) clear my_dictDictObj; % Clear the dictionary object from the workspace
-> I do not have any (known) objects of that dictionary
b) delete('MY_dict.sldd');
-> The file was already deleted from the disk
>> delete(dict.file)
Warning: File
'C:\...\MY_dict.sldd'
not found.
dict = struct with fields:
name: 'MY_dict'
filename: 'MY_dict.sldd'
>> dict.file = fullfile(targetpath, dict.filename)
>> Simulink.data.dictionary.closeAll([dict.name '.sldd'], '-discard')
>> dicthandle = Simulink.data.dictionary.create(dict.file)
Unable to create or open data dictionary
'C:\...\MY_dict.sldd'
because another dictionary with the same file name is already open. To create or open this dictionary, close all open
dictionaries by calling 'Simulink.data.dictionary.closeAll' and reopen.
Open file:
'C:\...\MY_dict.sldd'
How do I close this zombie dictionary?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Manage Design Data에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by