string variable and command prompt

8 views (last 30 days)
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 Comments
Stephen23
Stephen23 on 20 Jun 2018
Edited: Stephen23 on 20 Jun 2018
Why do you need to system for this? movefile is simpler and faster.

Sign in to comment.

Accepted Answer

Philip Borghesani
Philip Borghesani on 20 Jun 2018
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 Comments
Philip Borghesani
Philip Borghesani on 20 Jun 2018
You might try movefile for this instead. Error handling will be simpler, it can work on all platforms, and it is probably faster.

Sign in to comment.

More Answers (0)

Categories

Find more on Entering Commands in Help Center and File Exchange

Tags

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!