How to cut multiple file ans past it to folder?

2 vues (au cours des 30 derniers jours)
Faheem Ur Rehman
Faheem Ur Rehman le 3 Août 2021
Modifié(e) : Stephen23 le 3 Août 2021
I have fram4ASK100.mat to fram4ASK1000.mat in a folder and i want to cut them and past them intp new folder name as 4ASK.
I have tried follwoing code but it does't work
for i=100:1000
mkdir 4ASK
copyfile frame4ASK(i).m 4ASK

Réponses (2)

Yongjian Feng
Yongjian Feng le 3 Août 2021
Modifié(e) : Yongjian Feng le 3 Août 2021
mkdir 4ASK
for i=100:1000
copyfile(['frame4ASK' num2str(i) '.m'], 4ASK)
  1 commentaire
Stephen23
Stephen23 le 3 Août 2021
Modifié(e) : Stephen23 le 3 Août 2021
This answer will not work because its author does not appreciate the difference between command syntax and function syntax:

Connectez-vous pour commenter.


Stephen23
Stephen23 le 3 Août 2021
mkdir 4ASK
movefile frame4ASK*.m 4ASK

Catégories

En savoir plus sur Communications Toolbox dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by