Problem with Making a Folder in Win10

I want to create folder 't2', but MATLAB throws a warning that 'Directory already exists', although the folder does NOT exist. What is the problem and how to solve it?
>> cd
C:\Users\User2\Desktop
>> exist('t2', 'dir')
ans =
0
>> mkdir('C:\User\User2\Desktop\t2')
Warning: Directory already exists.
>> exist('t2', 'dir')
ans =
0

댓글 수: 3

What does
exists('C:\User\User2\Desktop\t2', 'dir')
show? And
! C:\Windows\system32\attrib C:\User\User2\Desktop\t2
(You might need to play around with the exact path to attrib)
Rightia Rollmann
Rightia Rollmann 2018년 4월 9일
My silly mistake was there were two folders, one 'Users' and the other 'User'! Thanks!
Walter Roberson
Walter Roberson 2018년 4월 9일
Dang, I specifically looked for that kind of problem and still managed to overlook it!

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

답변 (0개)

카테고리

도움말 센터File Exchange에서 File Operations에 대해 자세히 알아보기

질문:

2018년 4월 9일

댓글:

2018년 4월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by