Skip to content

Virtual‐File‐System‐(VFS)

Nan0berryOS edited this page Aug 10, 2026 · 1 revision
# 📁 Virtual File System (VFS)

O Nan0berryOS integra um sistema de arquivos em memória RAM não-persistente (Virtual Storage) de alto desempenho para armazenar arquivos do sistema como `system.cfg` e logs em tempo real.

## 📄 API do VFS
```c
int vfs_mount(void);
int vfs_open(const char *path, int flags);
int vfs_read(int fd, void *buf, size_t count);
int vfs_write(int fd, const void *buf, size_t count);
int vfs_close(int fd);

Clone this wiki locally