Can't create/open txt files
5 views (last 30 days)
Show older comments
The title pretty much sums it up. I want to use fopen to create or open a file and it is just returning -1 everytime. It seems like Matlab has not the rights to do that but I don't understand why.
I am administrator, I tried running Matlab as admistrator and I know I am in the right folder.
9 Comments
dpb
on 18 Feb 2021
Indeed, looks strange.
wd='D:\Work\Stage';
[stuff,msg] = fopen(fullfile(wd,'filename.txt'),'w')
??
Accepted Answer
Steven Lord
on 18 Feb 2021
Does the file D:\Work\Stage\filename.txt exist when you try to open it for writing? What do these commands return?
filename = 'd:\Work\Stage\filename.txt'
exist(filename) % Does it exist?
fileattrib(filename) % What permissions do the various groups have to this file?
9 Comments
Rik
on 18 Feb 2021
I have heard about an issue where on a cracked version fopen would fail for file extensions that were assigned a program in Windows. The issue would magically appear and disappear, but fopen on files without a recognized extension would always work. I tried to reproduce it so I could send a bug report, but neither of us managed to find the root cause (other than presumably the crack).
So if you're running a cracked version, see if your university or the organization facilitating your internship can provide you with a valid license. (the presumption of you being a student and doing an internship being based on your folder name meaning 'internship' in Dutch)
More Answers (0)
See Also
Categories
Find more on Data Import and Export in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!