How to have Matlab read files and then record the title of the file as a variable?

2 views (last 30 days)
Hi everyone,
I have a set of files in a folder, like:
58.94177000.dpmrpt
62.586.dpmrpt
67.5467700.dpmrpt
77.331770000.dpmrpt
I need to read each file in Matlab, and record the title of the file like 77.331770000 as a variable, because it is a time variable.
Thank you.

Accepted Answer

Walter Roberson
Walter Roberson on 10 Apr 2022
S = {'58.94177000.dpmrpt', '62.586.dpmrpt'}
S = 1×2 cell array
{'58.94177000.dpmrpt'} {'62.586.dpmrpt'}
[~, timepart, ~] = fileparts(S)
timepart = 1×2 cell array
{'58.94177000'} {'62.586'}
  3 Comments
Walter Roberson
Walter Roberson on 10 Apr 2022
projectdir = 'D:\data';
ext = ".dpmrp";
dinfo = dir(projectdir, "*" + ext);
filenames = fullfile({dinfo.folder}, {dinfo.name});
nfiles = length(filenames);
[~, timepart, ~] = fileparts(filenames);
for K = 1 : nfiles
thisfile = filenames{K};
thisdata = Function_To_Read_dpmrp_File_Goes_Here(thisfile);
results = Function_To_Process_Data_Goes_Here(thisdata);
end

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Object Identification in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!