hasNextFile
Syntax
Description
Examples
Check If File-Set Has Another File
Check if a file-set has another file and read the data iteratively.
Create a file-set fs
for a collection of files.
folder = {'accidents.mat','airlineResults.mat','census.mat','earth.mat'}
folder = 1x4 cell
{'accidents.mat'} {'airlineResults.mat'} {'census.mat'} {'earth.mat'}
fs = matlab.io.datastore.FileSet(folder)
fs = FileSet with properties: NumFiles: 4 NumFilesRead: 0 FileInfo: FileInfo for all 4 files AlternateFileSystemRoots: {}
Use the hasNextFile
and nextfile
functions to read file information one file at a time while files remain in the set.
while hasNextFile(fs) file = nextfile(fs) end
file = 1x1 FileInfo Filename FileSize _________________________________________________________________________________________________________________ ________ "/mathworks/devel/bat/filer/batfs2566-0/Bdoc24b.2725827/build/runnable/matlab/toolbox/matlab/demos/accidents.mat" 7343
file = 1x1 FileInfo Filename FileSize ______________________________________________________________________________ __________ "/tmp/Bdoc24b_2725827_1770503/tpc95639c5/matlab-ex38449974/airlineResults.mat" 1.5042e+05
file = 1x1 FileInfo Filename FileSize ______________________________________________________________________________________________________________ ________ "/mathworks/devel/bat/filer/batfs2566-0/Bdoc24b.2725827/build/runnable/matlab/toolbox/matlab/demos/census.mat" 353
file = 1x1 FileInfo Filename FileSize _____________________________________________________________________________________________________________ ________ "/mathworks/devel/bat/filer/batfs2566-0/Bdoc24b.2725827/build/runnable/matlab/toolbox/matlab/demos/earth.mat" 32522
Input Arguments
fs
— File-set
FileSet
object
File-set, specified as a FileSet
object. To create
a FileSet
object, see matlab.io.datastore.FileSet
.
Version History
Introduced in R2020a
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)