Memory Filesystem

Manage a volatile in-memory filesystem.

class fs.memoryfs.MemoryFS

A filesystem that stored in memory.

Memory filesystems are useful for caches, temporary data stores, unit testing, etc. They do require no parameters to their constructor. They are very fast, but non-permanent.

Example

>>> mem_fs = MemoryFS()