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

2 vues (au cours des 30 derniers jours)
Santosh Biradar
Santosh Biradar le 10 Août 2022
Modifié(e) : Stephen23 le 10 Août 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

Réponses (1)

KSSV
KSSV le 10 Août 2022
Modifié(e) : KSSV le 10 Août 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 commentaires
Santosh Biradar
Santosh Biradar le 10 Août 2022
Modifié(e) : Santosh Biradar le 10 Août 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 le 10 Août 2022
Modifié(e) : Stephen23 le 10 Août 2022
"How can I get D:\mydrive\Task8\CompareSummary\abc_2022_Result.xlsx using XlFile ..."
new = fullfile(xlFile(1).folder,xlFile(1).name)

Connectez-vous pour commenter.

Catégories

En savoir plus sur Data Import from MATLAB dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by