PodFileSystem class

High-level POD file system operations.

Provides simple read/write operations without encryption.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

createDirectory(String relativePath) Future<bool>
Create a directory in the POD.
deleteFile(String relativePath) Future<bool>
Delete a file from the POD.
directoryExists(String relativePath) Future<bool>
Check if a directory exists in the POD.
fileExists(String relativePath) Future<bool>
Check if a file exists in the POD.
readFile(String relativePath) Future<String?>
Read a file from the POD.
writeFile(String relativePath, String content, {PodContentType contentType = PodContentType.json, bool createParentDirs = true}) Future<bool>
Write a file to the POD.