web-dev-qa-db-ja.com

MATLABの特定のディレクトリにあるすべてのファイルを取得する方法は?

これらのすべてのファイルをD:\dicの下に取得し、それらをループ処理して個別にさらに処理する必要があります。

MATLABはこの種の操作をサポートしていますか?

PHP、Pythonなどの他のスクリプトで実行できます...

94
Gtker

更新:この投稿は非常に古く、このユーティリティを自分自身の使用のために大幅に変更したため、投稿する必要があると考えました新しいバージョン。私の最新のコードは The MathWorks File ExchangedirPlus.m にあります。 GitHub からソースを取得することもできます。

多くの改善を行いました。現在、フルパスを追加するか、ファイル名のみを返すオプション( Doresoom および Oz Radiano から組み込み)とファイル名に正規表現パターンを適用するオプションが組み込まれています(組み込みfrom Peter D )。さらに、各ファイルに検証関数を適用する機能を追加しました。これにより、ファイル名、ファイルサイズ、コンテンツ、作成日など以外の基準に基づいてファイルを選択できるようになりました。


注:MATLABの新しいバージョン(R2016b以降)では、 dir 関数に再帰的な検索機能があります!したがって、これを行うと、現在のフォルダーのすべてのサブフォルダーにあるすべての*.mファイルのリストを取得できます。

dirData = dir('**/*.m');

古いコード:(後世のため)

特定のディレクトリのすべてのサブディレクトリを再帰的に検索し、見つかったすべてのファイル名のリストを収集する関数を次に示します。

function fileList = getAllFiles(dirName)

  dirData = dir(dirName);      %# Get the data for the current directory
  dirIndex = [dirData.isdir];  %# Find the index for directories
  fileList = {dirData(~dirIndex).name}';  %'# Get a list of the files
  if ~isempty(fileList)
    fileList = cellfun(@(x) fullfile(dirName,x),...  %# Prepend path to files
                       fileList,'UniformOutput',false);
  end
  subDirs = {dirData(dirIndex).name};  %# Get a list of the subdirectories
  validIndex = ~ismember(subDirs,{'.','..'});  %# Find index of subdirectories
                                               %#   that are not '.' or '..'
  for iDir = find(validIndex)                  %# Loop over valid subdirectories
    nextDir = fullfile(dirName,subDirs{iDir});    %# Get the subdirectory path
    fileList = [fileList; getAllFiles(nextDir)];  %# Recursively call getAllFiles
  end

end

MATLABパス上のどこかに上記の関数を保存した後、次の方法で呼び出すことができます。

fileList = getAllFiles('D:\dic');
127
gnovice

ディレクトリの内容を返すために dir を探しています。

結果をループするには、次の手順を実行します。

dirlist = dir('.');
for i = 1:length(dirlist)
    dirlist(i)
end

これにより、次の形式で出力が得られます。

name: 'my_file'
date: '01-Jan-2010 12:00:00'
bytes: 56
isdir: 0
datenum: []
25
James B

this great answer に記載されているコードを使用し、それを拡張して、私の場合に必要な2つの追加パラメーターをサポートしました。パラメーターは、フィルター処理するファイル拡張子と、ファイル名へのフルパスを連結するかどうかを示すフラグです。

私はそれが十分に明確であり、誰かがそれを有益であると思うことを望みます。

function fileList = getAllFiles(dirName, fileExtension, appendFullPath)

  dirData = dir([dirName '/' fileExtension]);      %# Get the data for the current directory
  dirWithSubFolders = dir(dirName);
  dirIndex = [dirWithSubFolders.isdir];  %# Find the index for directories
  fileList = {dirData.name}';  %'# Get a list of the files
  if ~isempty(fileList)
    if appendFullPath
      fileList = cellfun(@(x) fullfile(dirName,x),...  %# Prepend path to files
                       fileList,'UniformOutput',false);
    end
  end
  subDirs = {dirWithSubFolders(dirIndex).name};  %# Get a list of the subdirectories
  validIndex = ~ismember(subDirs,{'.','..'});  %# Find index of subdirectories
                                               %#   that are not '.' or '..'
  for iDir = find(validIndex)                  %# Loop over valid subdirectories
    nextDir = fullfile(dirName,subDirs{iDir});    %# Get the subdirectory path
    fileList = [fileList; getAllFiles(nextDir, fileExtension, appendFullPath)];  %# Recursively call getAllFiles
  end

end

コードを実行する例:

fileList = getAllFiles(dirName, '*.xml', 0); %#0 is false obviously
13
Oz Radiano

Regexpまたはstrcmpを使用して.および..を削除できます。または、フォルダーではなくディレクトリ内のファイルのみが必要な場合は、isdirフィールドを使用できます。

list=dir(pwd);  %get info of files/folders in current directory
isfile=~[list.isdir]; %determine index of files vs folders
filenames={list(isfile).name}; %create cell array of file names

または最後の2行を結合します。

filenames={list(~[list.isdir]).name};

を除くディレクトリ内のフォルダのリスト。そして..

dirnames={list([list.isdir]).name};
dirnames=dirnames(~(strcmp('.',dirnames)|strcmp('..',dirnames)));

この時点から、ネストされたforループでコードをスローし、dirnamesが各サブディレクトリの空のセルを返すまで、各サブフォルダの検索を続けることができるはずです。

8
Doresoom

この回答は質問に直接回答するものではありませんが、箱の外にある良い解決策かもしれません。

私はgnoviceのソリューションを支持しましたが、別のソリューションを提供したいです:オペレーティングシステムのシステム依存コマンドを使用します。

tic
asdfList = getAllFiles('../TIMIT_FULL/train');
toc
% Elapsed time is 19.066170 seconds.

tic
[status,cmdout] = system('find ../TIMIT_FULL/train/ -iname "*.wav"');
C = strsplit(strtrim(cmdout));
toc
% Elapsed time is 0.603163 seconds.

正:

  • 非常に高速です(私の場合、Linux上の18000ファイルのデータベースの場合)。
  • 十分にテストされたソリューションを使用できます。
  • つまり、*.wavファイルを選択するために新しい構文を学習したり再開発したりする必要はありません。

ネガティブ:

  • あなたはシステムに依存していません。
  • 解析が困難な単一の文字列に依存しています。
7
Lukas

このための単一関数メソッドはわかりませんが、genpathを使用してサブディレクトリのみのリストを再帰できます。このリストは、セミコロンで区切られたディレクトリの文字列として返されるため、strreadを使用して区切る必要があります。

dirlist = strread(genpath('/path/of/directory'),'%s','delimiter',';')

指定したディレクトリを含めたくない場合は、dirlistの最初のエントリ、つまりdirlist(1)=[];を削除します。これは常に最初のエントリであるためです。

次に、ループされたdirを使用して、各ディレクトリ内のファイルのリストを取得します。

filenamelist=[];
for d=1:length(dirlist)
    % keep only filenames
    filelist=dir(dirlist{d});
    filelist={filelist.name};

    % remove '.' and '..' entries
    filelist([strmatch('.',filelist,'exact');strmatch('..',filelist,'exact'))=[];
    % or to ignore all hidden files, use filelist(strmatch('.',filelist))=[];

    % prepend directory name to each filename entry, separated by filesep*
    for f=1:length(filelist)
        filelist{f}=[dirlist{d} filesep filelist{f}];
    end

    filenamelist=[filenamelist filelist];
end

filesepは、MATLABが実行されているプラ​​ットフォームのディレクトリ区切り記号を返します。

これにより、セル配列filenamelistのフルパスを持つファイル名のリストが表示されます。最も近い解決策ではない、私は知っている。

3
JS Ng

これは、ファイル名を取得するための便利な関数で、指定された形式(通常は.mat)でルートフォルダーにあります!

    function filenames = getFilenames(rootDir, format)
        % Get filenames with specified `format` in given `foler` 
        %
        % Parameters
        % ----------
        % - rootDir: char vector
        %   Target folder
        % - format: char vector = 'mat'
        %   File foramt

        % default values
        if ~exist('format', 'var')
            format = 'mat';
        end

        format = ['*.', format];
        filenames = dir(fullfile(rootDir, format));
        filenames = arrayfun(...
            @(x) fullfile(x.folder, x.name), ...
            filenames, ...
            'UniformOutput', false ...
        );
    end

あなたの場合、次のスニペットを使用できます:)

filenames = getFilenames('D:/dic/**');
for i = 1:numel(filenames)
    filename = filenames{i};
    % do your job!
end
1
Yas

ほとんど変更せず、各サブフォルダのフルファイルパスを取得するためのほぼ同様のアプローチで

dataFolderPath = 'UCR_TS_Archive_2015/';

dirData = dir(dataFolderPath);      %# Get the data for the current directory
dirIndex = [dirData.isdir];  %# Find the index for directories
fileList = {dirData(~dirIndex).name}';  %'# Get a list of the files
if ~isempty(fileList)
    fileList = cellfun(@(x) fullfile(dataFolderPath,x),...  %# Prepend path to files
        fileList,'UniformOutput',false);
end
subDirs = {dirData(dirIndex).name};  %# Get a list of the subdirectories
validIndex = ~ismember(subDirs,{'.','..'});  %# Find index of subdirectories
%#   that are not '.' or '..'
for iDir = find(validIndex)                  %# Loop over valid subdirectories
    nextDir = fullfile(dataFolderPath,subDirs{iDir});    %# Get the subdirectory path
    getAllFiles = dir(nextDir);
    for k = 1:1:size(getAllFiles,1)
        validFileIndex = ~ismember(getAllFiles(k,1).name,{'.','..'});
        if(validFileIndex)
            filePathComplete = fullfile(nextDir,getAllFiles(k,1).name);
            fprintf('The Complete File Path: %s\n', filePathComplete);
        end
    end
end  
0
Spandan