Filter löschen
Filter löschen

I want to select an Excel file by it's extension

3 Ansichten (letzte 30 Tage)
Santosh Biradar
Santosh Biradar am 10 Aug. 2022
Bearbeitet: Stephen23 am 10 Aug. 2022
Hi
%% Here only 1 Excel file will be present in ComparySummary folder. And I want select that Excel file with FilePath %%
FilePath = fullfile(pwd,'\CompareSummary\*_*.xlsx');
[~,sheets] = xlsfinfo(FilePath);
But, It is not idenfying *_*, as I am putting it into single quotation marks ' '.
Please let me know what change shall I do here?
Thank you
Please let me know for brief

Antworten (1)

KSSV
KSSV am 10 Aug. 2022
Bearbeitet: KSSV am 10 Aug. 2022
%% Here only 1 Excel file will be present in ComparySummary folder. And I want select that Excel file with FilePath %%
FilePath = fullfile(pwd,'\CompareSummary\*.xlsx');
xlFile = dir(FilePath) ;
[~,sheets] = xlsfinfo(fullfile(xlFile(1).folder,xlFile(1).name));
  4 Kommentare
Santosh Biradar
Santosh Biradar am 10 Aug. 2022
Bearbeitet: Santosh Biradar am 10 Aug. 2022
Previously, I am using FilePath to read abc_2022_Result.xlsx.
How can I get
D:\mydrive\Task8\CompareSummary\abc_2022_Result.xlsx
using XlFile or NEW variable.
[~,sheets] = xlsfinfo(fullfile(xlFile(1).folder,xlFile(1).name));
Here can I get excel file address?
sheets showing the worksheet presnt in abc_2022_Result.xlsx correctly but getting problem with it's address reading pattern.
xlFile =
struct with fields:
name: 'abc_2022_Result.xlsx'
folder: 'D:\mydrive\Task8\CompareSummary'
date: '10-Aug-2022 14:50:33'
bytes: 34137
isdir: 0
datenum: 7.3874e+05
How can I get
D:\mydrive\Task8\CompareSummary\abc_2022_Result.xlsx
[~,sheets] = xlsfinfo(fullfile(xlFile(1).folder,xlFile(1).name));
can I get excel file New variable.?
Thank you
Stephen23
Stephen23 am 10 Aug. 2022
Bearbeitet: Stephen23 am 10 Aug. 2022
"How can I get D:\mydrive\Task8\CompareSummary\abc_2022_Result.xlsx using XlFile ..."
new = fullfile(xlFile(1).folder,xlFile(1).name)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by