string variable and command prompt

조회 수: 12 (최근 30일)
Keith Holmlund
Keith Holmlund 2018년 6월 20일
편집: Stephen23 2018년 6월 20일
I know you can use a string variable with cd such as dir = 'C:Users\User\Documents\Matlab' then cd(dir). Is that same type of command possible using the system command such as [status] = system('move dir\file.txt newlocation')
  댓글 수: 2
Adam
Adam 2018년 6월 20일
I would have though you could try it and get an answer far faster than on here! As far as I know the string you give to the system function will be interpreted in the context of the command line so if it is valid in that context then it would work, otherwise not.
Stephen23
Stephen23 2018년 6월 20일
편집: Stephen23 2018년 6월 20일
Why do you need to system for this? movefile is simpler and faster.

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

채택된 답변

Philip Borghesani
Philip Borghesani 2018년 6월 20일
Short answer: yes.
Long answer: Any MATLAB function that takes one or more character vectors as input can be called in command mode see command-vs-function documentation for more information.
I am a bit surprised you had to ask is something not working the way you expect it to?
  댓글 수: 4
Keith Holmlund
Keith Holmlund 2018년 6월 20일
thank you both, that ended up working
Philip Borghesani
Philip Borghesani 2018년 6월 20일
You might try movefile for this instead. Error handling will be simpler, it can work on all platforms, and it is probably faster.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

태그

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by