![]() |
Soldered SD Card Arduino Library 1.0.0
Easily read and write files to and form the SD card breakout! A fork of the original SDFat library by Bill Greiman.
|
Integration class for the FatLib library. More...
#include <FatVolume.h>
Inherits FatPartition.
Inherited by SdBase< FatVolume >.
Public Member Functions | |
| bool | begin (BlockDevice *dev, bool setCwv=true, uint8_t part=1) |
| void | chvol () |
| bool | chdir () |
| bool | chdir (const char *path) |
| bool | exists (const char *path) |
| bool | ls (print_t *pr, uint8_t flags=0) |
| bool | ls (print_t *pr, const char *path, uint8_t flags) |
| bool | mkdir (const char *path, bool pFlag=true) |
| File32 | open (const char *path, oflag_t oflag=O_RDONLY) |
| bool | remove (const char *path) |
| bool | rename (const char *oldPath, const char *newPath) |
| bool | rmdir (const char *path) |
| bool | truncate (const char *path, uint32_t length) |
| bool | ls (uint8_t flags=0) |
| bool | ls (const char *path, uint8_t flags=0) |
| bool | chdir (const String &path) |
| bool | exists (const String &path) |
| bool | mkdir (const String &path, bool pFlag=true) |
| File32 | open (const String &path, oflag_t oflag=O_RDONLY) |
| bool | remove (const String &path) |
| bool | rename (const String &oldPath, const String &newPath) |
| bool | rmdir (const String &path) |
| bool | truncate (const String &path, uint32_t length) |
Public Member Functions inherited from FatPartition | |
| FatPartition () | |
| uint8_t | bytesPerClusterShift () const |
| uint16_t | bytesPerCluster () const |
| uint16_t | bytesPerSector () const |
| uint8_t | bytesPerSectorShift () const |
| uint16_t | sectorMask () const |
| uint8_t | sectorsPerCluster () const |
| uint8_t | blocksPerCluster () __attribute__((deprecated)) |
| uint32_t | sectorsPerFat () const |
| uint8_t * | cacheClear () |
| uint32_t | clusterCount () const |
| uint8_t | sectorsPerClusterShift () const |
| uint32_t | dataStartSector () const |
| uint8_t | fatCount () const |
| uint32_t | fatStartSector () const |
| uint8_t | fatType () const |
| int32_t | freeClusterCount () |
| bool | init (BlockDevice *dev, uint8_t part=1) |
| uint16_t | rootDirEntryCount () const |
| uint32_t | rootDirStart () const |
| uint32_t | volumeSectorCount () const |
| int8_t | dbgFat (uint32_t n, uint32_t *v) |
| bool | isBusy () |
| void | dmpDirSector (print_t *pr, uint32_t sector) |
| void | dmpFat (print_t *pr, uint32_t start, uint32_t count) |
| void | dmpRootDir (print_t *pr) |
| void | dmpSector (print_t *pr, uint32_t sector, uint8_t bits=8) |
Private Member Functions | |
| FatFile * | vwd () |
Static Private Member Functions | |
| static FatVolume * | cwv () |
Private Attributes | |
| friend | FatFile |
| FatFile | m_vwd |
Static Private Attributes | |
| static FatVolume * | m_cwv = nullptr |
Integration class for the FatLib library.
|
inline |
Initialize an FatVolume object.
| [in] | dev | Device block driver. |
| [in] | setCwv | Set current working volume if true. |
| [in] | part | partition to initialize. |
|
inline |
Set volume working directory to root.
| bool FatVolume::chdir | ( | const char * | path | ) |
Set volume working directory.
| [in] | path | Path for volume working directory. |
|
inline |
Set volume working directory.
| [in] | path | Path for volume working directory. |
|
inline |
Change global current working volume to this volume.
|
inlinestaticprivate |
|
inline |
Test for the existence of a file.
| [in] | path | Path of the file to be tested for. |
|
inline |
Test for the existence of a file.
| [in] | path | Path of the file to be tested for. |
|
inline |
List the directory contents of a directory to Serial.
| [in] | path | directory to list. |
| [in] | flags | The inclusive OR of |
LS_DATE - Print file modification date
LS_SIZE - Print file size.
LS_R - Recursive list of subdirectories.
|
inline |
List the contents of a directory.
| [in] | pr | Print stream for list. |
| [in] | path | directory to list. |
| [in] | flags | The inclusive OR of |
LS_DATE - Print file modification date
LS_SIZE - Print file size.
LS_R - Recursive list of subdirectories.
|
inline |
List the directory contents of the volume root directory.
| [in] | pr | Print stream for list. |
| [in] | flags | The inclusive OR of |
LS_DATE - Print file modification date
LS_SIZE - Print file size.
LS_R - Recursive list of subdirectories.
|
inline |
List the directory contents of the root directory to Serial.
| [in] | flags | The inclusive OR of |
LS_DATE - Print file modification date
LS_SIZE - Print file size.
LS_R - Recursive list of subdirectories.
|
inline |
Make a subdirectory in the volume root directory.
| [in] | path | A path with a valid name for the subdirectory. |
| [in] | pFlag | Create missing parent directories if true. |
|
inline |
Make a subdirectory in the volume root directory.
| [in] | path | A path with a valid name for the subdirectory. |
| [in] | pFlag | Create missing parent directories if true. |
open a file
| [in] | path | location of file to be opened. |
| [in] | oflag | open flags. |
open a file
| [in] | path | location of file to be opened. |
| [in] | oflag | open flags. |
|
inline |
Remove a file from the volume root directory.
| [in] | path | A path with a valid name for the file. |
|
inline |
Remove a file from the volume root directory.
| [in] | path | A path with a valid name for the file. |
|
inline |
Rename a file or subdirectory.
| [in] | oldPath | Path name to the file or subdirectory to be renamed. |
| [in] | newPath | New 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.
|
inline |
Rename a file or subdirectory.
| [in] | oldPath | Path name to the file or subdirectory to be renamed. |
| [in] | newPath | New 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.
|
inline |
Remove a subdirectory from the volume's working directory.
| [in] | path | A path with a valid name for the subdirectory. |
The subdirectory file will be removed only if it is empty.
|
inline |
Remove a subdirectory from the volume's working directory.
| [in] | path | A path with a valid name for the subdirectory. |
The subdirectory file will be removed only if it is empty.
|
inline |
Truncate a file to a specified length. The current file position will be at the new EOF.
| [in] | path | A path with a valid name for the file. |
| [in] | length | The desired length for the file. |
|
inline |
Truncate a file to a specified length. The current file position will be at the new EOF.
| [in] | path | A path with a valid name for the file. |
| [in] | length | The desired length for the file. |
|
inlineprivate |
|
private |
|
staticprivate |
Copyright (c) 2011-2020 Bill Greiman This file is part of the SdFat 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.
|
private |