You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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```cintvfs_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);