Effacer les filtres
Effacer les filtres

How to create folder using mkdir with permissions to write?

80 vues (au cours des 30 derniers jours)
Kelly Kyriakou
Kelly Kyriakou le 29 Nov 2016
I created a folder using "mkdir", however I can't write files at this folder because the I don't have the permission, the folder is only for read. How to create folder with permission to write?
  3 commentaires
Kelly Kyriakou
Kelly Kyriakou le 29 Nov 2016
I used fileattrib('D:\work\results','+w') but nothing changed, the folder is still for read only
Alexandra Harkai
Alexandra Harkai le 29 Nov 2016
Was the return status 1?

Connectez-vous pour commenter.

Réponses (2)

Jordan Reid
Jordan Reid le 27 Déc 2019
Rather than looking at the permission, look at the directory attribute. I realized that I had used mkdir to create a folder and, for some reason (I suspect it had to do with accidentally using a cell of strings as one of my inputs to create the folder), the directory value was set to zero. When I made the same name directory by hard coding it, the directory attribute was set to 1 and, all of a sudden, I could write files where before it would not allow me. I know this question is old, but I'm providing the answer now for anyone else who runs across this issue and struggles to find an answer like I did.

Jan
Jan le 29 Nov 2016
When you use fileattrib, catch the success and the error message also:
[status,msg,msgID] = fileattrib('D:\work\results','+w')
What do you get? You cannot change the permissions of a folder, if you do not have write permissions to it. Actually you should not even be able to create a folder without write permissions. So how did you create it at first?
Will the problem occur repeatedly? If not, use the Security tab in the "Properties" of the folder, which appears in its context menu in the Windows Explorer. Perhaps the permissions of D:\Work are restricted already. Then fix this folder also.

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by