hasNextBlock
Determine if blocked file-set has another block
Syntax
Description
Examples
Check If Blocked File-Set Has Another Block
Check if a blocked file-set has another block available to process and read the data iteratively.
Create a blocked file-set bs
for a collection of files.
folder = {'accidents.mat','airlineResults.mat','census.mat','earth.mat'}
folder = 1x4 cell
Columns 1 through 3
{'accidents.mat'} {'airlineResults...'} {'census.mat'}
Column 4
{'earth.mat'}
bs = matlab.io.datastore.BlockedFileSet(folder)
bs = BlockedFileSet with properties: NumBlocks: 4 NumBlocksRead: 0 BlockSize: 'file' BlockInfo: Show BlockInfo for all 4 blocks AlternateFileSystemRoots: {}
Use the hasNextBlock
and nextblock
functions to read block information one block at a time while blocks remain in the set.
while hasNextBlock(bs) file = nextblock(bs) end
file = 1x1 BlockInfo Filename FileSize Offset BlockSize ______________________________________________________________________________ ________ ______ _________ "/mathworks/devel/bat/Bdoc22a/build/matlab/toolbox/matlab/demos/accidents.mat" 7343 0 7343
file = 1x1 BlockInfo Filename FileSize Offset BlockSize ___________________________________________________________________________________ __________ ______ __________ "/mathworks/devel/bat/Bdoc22a/build/matlab/toolbox/matlab/demos/airlineResults.mat" 1.5042e+05 0 1.5042e+05
file = 1x1 BlockInfo Filename FileSize Offset BlockSize ___________________________________________________________________________ ________ ______ _________ "/mathworks/devel/bat/Bdoc22a/build/matlab/toolbox/matlab/demos/census.mat" 353 0 353
file = 1x1 BlockInfo Filename FileSize Offset BlockSize __________________________________________________________________________ ________ ______ _________ "/mathworks/devel/bat/Bdoc22a/build/matlab/toolbox/matlab/demos/earth.mat" 32522 0 32522
Input Arguments
bs
— Blocked file-set
matlab.io.datastore.BlockedFileSet
object
Blocked file-set, specified as a matlab.io.datastore.BlockedFileSet
object. To create a BlockedFileSet
object, see matlab.io.datastore.BlockedFileSet
.
Example: hasNextBlock(bs)
Version History
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
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)