Filter löschen
Filter löschen

How to rename a file with a string from user input?

2 Ansichten (letzte 30 Tage)
Stefan
Stefan am 30 Jan. 2018
Bearbeitet: Stefan am 30 Jan. 2018
Hi,
I would like to use a string from a text in prompt and then use movefile to rename a pdf file. Unfortunately, I can't figure out how to use the string for the file name. I would really appreciate your help.
Thanks, Stefan

Antworten (1)

KSSV
KSSV am 30 Jan. 2018
prompt = 'Give name of file:' ;
str = input(prompt,'s') ;
Now use str
  1 Kommentar
Stefan
Stefan am 30 Jan. 2018
Bearbeitet: Stefan am 30 Jan. 2018
Thanks for your answer. My code still doesn't work:
a ='T:\...\default.pdf';
newName = str;
movefile( a, newName );

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by