SdFs
Public Member Functions | Static Public Member Functions | List of all members
ExFatVolume Class Reference

exFAT volume. More...

#include <ExFatVolume.h>

Inheritance diagram for ExFatVolume:
Inheritance graph
[legend]
Collaboration diagram for ExFatVolume:
Collaboration graph
[legend]

Public Member Functions

bool begin (BlockDevice *dev, bool setCwv=true, uint8_t part=0)
 
uint32_t bytesPerCluster ()
 
uint8_t bytesPerClusterShift ()
 
uint16_t bytesPerSector ()
 
uint8_t bytesPerSectorShift ()
 
uint8_t * cacheClear ()
 
bool chdir ()
 
bool chdir (const char *path)
 
void chvol ()
 
uint32_t clusterCount ()
 
uint32_t clusterHeapStartSector ()
 
bool exists (const ExChar_t *path)
 
uint32_t fatLength ()
 
uint32_t fatStartSector ()
 
uint8_t fatType () const
 
uint32_t freeClusterCount ()
 
bool init (BlockDevice *dev, uint8_t part)
 
void ls (print_t *pr, uint8_t flags=0)
 
void ls (print_t *pr, const ExChar_t *path, uint8_t flags)
 
bool mkdir (const ExChar_t *path, bool pFlag=true)
 
bool remove (const ExChar_t *path)
 
bool rename (const ExChar_t *oldPath, const ExChar_t *newPath)
 
bool rmdir (const ExChar_t *path)
 
uint32_t rootDirectoryCluster ()
 
uint32_t rootLength ()
 
uint32_t sectorsPerCluster ()
 
uint8_t sectorsPerClusterShift ()
 
bool truncate (const ExChar_t *path, uint64_t length)
 

Static Public Member Functions

static ExFatVolumecwv ()
 

Detailed Description

exFAT volume.

Copyright (c) 20011-2017 Bill Greiman This file is part of the SdFs library for SD memory cards.

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Member Function Documentation

bool ExFatVolume::begin ( BlockDevice dev,
bool  setCwv = true,
uint8_t  part = 0 
)
inline

Initialize an FatVolume object.

Parameters
[in]devDevice block driver.
[in]setCwvSet current working volume if true.
[in]partpartition to initialize.
Returns
The value true is returned for success and the value false is returned for failure.
uint32_t ExFatPartition::bytesPerCluster ( )
inlineinherited
Returns
the number of bytes in a cluster.
uint8_t ExFatPartition::bytesPerClusterShift ( )
inlineinherited
Returns
the power of two for bytesPerCluster.
uint16_t ExFatPartition::bytesPerSector ( )
inlineinherited
Returns
the number of bytes in a sector.
uint8_t ExFatPartition::bytesPerSectorShift ( )
inlineinherited
Returns
the power of two for bytesPerSector.
uint8_t* ExFatPartition::cacheClear ( )
inlineinherited

Clear the cache and returns a pointer to the cache. Not for normal apps.

Returns
A pointer to the cache buffer or zero if an error occurs.
bool ExFatVolume::chdir ( )
inline

Set volume working directory to root.

Returns
true for success else false.
bool ExFatVolume::chdir ( const char *  path)

Set volume working directory.

Parameters
[in]pathPath for volume working directory.
Returns
true for success or false for failure.
void ExFatVolume::chvol ( )
inline

Change global working volume to this volume.

uint32_t ExFatPartition::clusterCount ( )
inlineinherited
Returns
the cluster count for the partition.
uint32_t ExFatPartition::clusterHeapStartSector ( )
inlineinherited
Returns
the cluster heap start sector.
static ExFatVolume* ExFatVolume::cwv ( )
inlinestatic
Returns
current working volume.
bool ExFatVolume::exists ( const ExChar_t *  path)
inline

Test for the existence of a file.

Parameters
[in]pathPath of the file to be tested for.
Returns
true if the file exists else false.
uint32_t ExFatPartition::fatLength ( )
inlineinherited
Returns
the FAT length in sectors
uint32_t ExFatPartition::fatStartSector ( )
inlineinherited
Returns
the FAT start sector number.
uint8_t ExFatPartition::fatType ( ) const
inlineinherited
Returns
Type FAT_TYPE_EXFAT for exFAT partition or zero for error.
uint32_t ExFatPartition::freeClusterCount ( )
inherited
Returns
the free cluster count.
bool ExFatPartition::init ( BlockDevice dev,
uint8_t  part 
)
inherited

Initialize a exFAT partition.

Parameters
[in]devThe blockDevice for the partition.
[in]partThe partition to be used. Legal values for part are 1-4 to use the corresponding partition on a device formatted with a MBR, Master Boot Record, or zero if the device is formatted as a super floppy with the FAT boot sector in sector zero.
Returns
The value true is returned for success and the value false is returned for failure.
void ExFatVolume::ls ( print_t *  pr,
uint8_t  flags = 0 
)
inline

List the directory contents of the root directory.

Parameters
[in]prPrint stream for list.
[in]flagsThe inclusive OR of

LS_DATE - Print file modification date

LS_SIZE - Print file size.

LS_R - Recursive list of subdirectories.

void ExFatVolume::ls ( print_t *  pr,
const ExChar_t *  path,
uint8_t  flags 
)
inline

List the directory contents of a directory.

Parameters
[in]prPrint stream for list.
[in]pathdirectory to list.
[in]flagsThe inclusive OR of

LS_DATE - Print file modification date

LS_SIZE - Print file size.

LS_R - Recursive list of subdirectories.

bool ExFatVolume::mkdir ( const ExChar_t *  path,
bool  pFlag = true 
)
inline

Make a subdirectory in the volume root directory.

Parameters
[in]pathA path with a valid 8.3 DOS name for the subdirectory.
[in]pFlagCreate missing parent directories if true.
Returns
The value true is returned for success and the value false is returned for failure.
bool ExFatVolume::remove ( const ExChar_t *  path)
inline

Remove a file from the volume root directory.

Parameters
[in]pathA path with a valid 8.3 DOS name for the file.
Returns
The value true is returned for success and the value false is returned for failure.
bool ExFatVolume::rename ( const ExChar_t *  oldPath,
const ExChar_t *  newPath 
)
inline

Rename a file or subdirectory.

Parameters
[in]oldPathPath name to the file or subdirectory to be renamed.
[in]newPathNew path name of the file or subdirectory.

The newPath object must not exist before the rename call.

The file to be renamed must not be open. The directory entry may be moved and file system corruption could occur if the file is accessed by a file object that was opened before the rename() call.

Returns
The value true is returned for success and the value false is returned for failure.
bool ExFatVolume::rmdir ( const ExChar_t *  path)
inline

Remove a subdirectory from the volume's working directory.

Parameters
[in]pathA path with a valid 8.3 DOS name for the subdirectory.

The subdirectory file will be removed only if it is empty.

Returns
The value true is returned for success and the value false is returned for failure.
uint32_t ExFatPartition::rootDirectoryCluster ( )
inlineinherited
Returns
the root directory start cluster number.
uint32_t ExFatPartition::rootLength ( )
inherited
Returns
the root directory length.
uint32_t ExFatPartition::sectorsPerCluster ( )
inlineinherited
Returns
the number of sectors in a cluster.
uint8_t ExFatPartition::sectorsPerClusterShift ( )
inlineinherited
Returns
the power of two for sectors per cluster.
bool ExFatVolume::truncate ( const ExChar_t *  path,
uint64_t  length 
)
inline

Truncate a file to a specified length. The current file position will be at the new EOF.

Parameters
[in]pathA path with a valid 8.3 DOS name for the file.
[in]lengthThe desired length for the file.
Returns
The value true is returned for success and the value false is returned for failure.

The documentation for this class was generated from the following files: