How to delete the ending / last characters of files?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Haron Shaker
le 23 Mar 2021
Commenté : Haron Shaker
le 9 Avr 2021
Dear all,
I got a list of '...edf.html' files (e.g. 00014654_s001_t000.edf.html).
I want to delete for all files the '.html' part. How can I do it?
Réponse acceptée
Rashed Mohammed
le 26 Mar 2021
Modifié(e) : Rashed Mohammed
le 26 Mar 2021
Hi Haron
As suggested by Stephen, you can use fileparts and movefile functions to delete the '.html' part from your filenames. Below is a sample code.
files = dir('*.edf.html');
for ii=1:length(files)
oldname = files(ii).name;
[path,newname,ext] = fileparts(oldname);
movefile(oldname,newname);
end
Hope this helps
3 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!