Avoid slprj folder and slxc files

조회 수: 22 (최근 30일)
Federico Manfrin
Federico Manfrin 2022년 9월 11일
댓글: Paul 2024년 5월 3일
Is it possible to force that "not interesting for the user" files away from the main folder where my script and simulink files are?
I would like that file to be someway in a temporary harddisk location I can clean once a year, for example.

채택된 답변

Paul
Paul 2022년 9월 11일
Possibly can be done via Simulink preferences. Try this doc page, particularly the section on "Folders for Generated Files."
  댓글 수: 2
Federico Manfrin
Federico Manfrin 2024년 5월 3일
this doc page is not present anymore
Paul
Paul 2024년 5월 3일

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

추가 답변 (1개)

Image Analyst
Image Analyst 2022년 9월 11일
Yes, just define that folder like
tempFolder = 'C:\User\Public\Documents\Temporary Simulink Files';
Then use fullfile to build up the name of the file you need to save, like
fullFileName1 = fullfile(tempFolder, 'Temp File1.txt');
fullFileName2 = fullfile(tempFolder, 'Temp File2.dat');
fullFileName3 = fullfile(tempFolder, 'Temp File3.mat');

카테고리

Help CenterFile Exchange에서 Simulink에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by