필터 지우기
필터 지우기

fail to delete files using the delete command in R2018a

조회 수: 18 (최근 30일)
Songqiu
Songqiu 2018년 5월 21일
댓글: Walter Roberson 2021년 9월 3일
Hi, everyone,
The current dir is F:\Test
I tested to delete files using the following commands:
TestName = 'F:\Test\Test\Test.xlsx'
delete TestName
But it failed to work:
When I set the current dir to F:\Test\Test and using the following commands:
TestName = 'Test.xlsx'
delete TestName
It also failed to work:
But when I using the delete 'Test.xlsx' command, it succeeded:
Does anyone have the same problem or who can tell me why?
Thank you very much in advance.
  댓글 수: 1
Stephen23
Stephen23 2018년 5월 21일
"Does anyone have the same problem or who can tell me why?"
Because you are using command syntax, which interprets all trailing inputs as literal strings. So when you enter this:
Delete TestName
it is exactly equivalent to this:
Delete('TestName')
Thus none of your examples (except the last one) are trying to delete that file. If you want to use a variable as an input argument to a function then you will need to use function syntax, as Walter Roberson showed. Note also that none of the examples in the MATLAB help show command syntax being used with an input argument.

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

채택된 답변

Walter Roberson
Walter Roberson 2018년 5월 21일
  댓글 수: 2
Sihem Nour El Houda
Sihem Nour El Houda 2021년 9월 3일
Hello , sir . I tried to use the delete command many times but it wouldn't work. I can't seem to understand why as I followed many examples. What I'm working on is : if an image verifies a condition that is defined, delete the file !
The code runs but the image file is always present in the folder !
I would really appreciate your help with this as I need it to loop through tens of images prior to the training of a CNN.
Thanks in a advance
Walter Roberson
Walter Roberson 2021년 9월 3일
Please post some code for us to look at.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by