필터 지우기
필터 지우기

How to delete the 3 first rows of a .csv file? And how to automate it so that it does it for all the .csv files in a folder that has also subfolderd containing .csv files?

조회 수: 16 (최근 30일)
Hi,
I am new to Matlab, and I would appreciate any kind of help. I have a lot of .csv files in an folder, that also has a lot of subfolders containing .csv files. Each of the .csv files have unimportant data on the first 3 rows. I would like to create a code that would search through these files and delete these rows. Can you give me help to get to the right track.

채택된 답변

the cyclist
the cyclist 2013년 7월 31일
편집: the cyclist 2013년 7월 31일
Here is a rough outline of what you need:
  • dir() -- command to get a listing of the files and directories
  • M = csvread(...) -- read in each file identified in the first step
  • M(1:3,:) = []; -- Trim the first three rows
  • csvwrite(...) -- Write the csv files back
I suggest you try this (be sure you have file backups first!), and then post new questions on each step, if you get stuck.

추가 답변 (1개)

nasib dar
nasib dar 2019년 4월 29일
Delete first 2 rows of multiple csv in Excel, here is full video https://www.youtube.com/watch?v=2mx9bZ7xz5o&t=38s

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by