You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version of Homer3 you are using
MATLAB Runtime R2021b, MATLAB R2017b; Windows 10 64-bit
Description of the issue
function SetLastCheckForUpdates(dt)
if ~exist('dt','var') && ispathvalid([getAppDir, 'LastCheckForUpdates.dat'])
return;
end
if ~exist('dt','var')
try
dt = datetime;
catch
dt = -1;
end
end
fd = fopen([getAppDir, 'LastCheckForUpdates.dat'],'wt');
fprintf(fd, '%s\n', dt);
fclose(fd);
I think fd should become 1 or 2.
But, this code make fd to -1 .
Please fix the program or commentes to me.
The text was updated successfully, but these errors were encountered:
Got the same error in MATLAB2023b when the path was in the C:\Program files.... for which administrator rights are required. Didn't get this error when I moved the Homer root folder to another location/drive.
Version of Homer3 you are using
MATLAB Runtime R2021b, MATLAB R2017b; Windows 10 64-bit
Description of the issue
I think fd should become 1 or 2.
But, this code make fd to -1 .
Please fix the program or commentes to me.
The text was updated successfully, but these errors were encountered: