Change File Permission of File Created on a Unix System
9 ビュー (過去 30 日間)
古いコメントを表示
Hello all,
A file I am generating in MATLAB in Unix is being created with write permission to all users, but when I try to view the file on Windows, it is Read-Only.
TemplateFile = 'MyTemplate.pptx';
NewFile = 'MyNewFile.pptx';
copyfile(TemplateFile,NewFile,'f');
fileattrib(NewFile,'+w'); % set write access.
The file is generated without issue, but when I try to modify it on a windows machine, it will not let me. I have tried adding a user to the fielattrib command, but it has not been successful.
Any help is greatly appreciated!
1 件のコメント
Walter Roberson
2021 年 5 月 15 日
What kind of shared filesystem is being used?
... Or is this a dual-boot situation?
回答 (1 件)
Jan
2021 年 5 月 14 日
Does your Windows account has write permissions in the folder?
Which error message do you see in which program? Maybe the file is password protected and the access limitation is not a problem of the file system.
3 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!