OnlyCSharp File Manager
The directory browser behind the OnlyCSharp Warren file manager (1.6). Warren formats
a genuine 1 MiB ext2 image in memory, writes a small tree into it, then lists it back
through the locked Ext2Volume reader — a real filesystem, not a mock. This
page shows that mounted volume: 7 files and 3 directories, each with its
size, MIME type and Unix permission bits. Authored as .razor; rendered to static HTML.
Volume tree
/ ├─ docs/ │ ├─ guide.md │ └─ data.json ├─ src/ │ ├─ engine/ │ │ └─ vfs.cs │ └─ main.cs ├─ readme.md ├─ notes.txt └─ photo.png
Listing (recursive)
| Path | Kind | Size | MIME | Permissions |
|---|---|---|---|---|
| /docs | dir | - | inode/directory | drwxr-xr-x |
| /docs/guide.md | file | 35B | text/markdown | -rw-r--r-- |
| /docs/data.json | file | 33B | application/json | -rw-r--r-- |
| /src | dir | - | inode/directory | drwxr-xr-x |
| /src/engine | dir | - | inode/directory | drwxr-xr-x |
| /src/engine/vfs.cs | file | 21B | application/octet-stream | -rw-r--r-- |
| /src/main.cs | file | 61B | application/octet-stream | -rw-r--r-- |
| /readme.md | file | 60B | text/markdown | -rw-r--r-- |
| /notes.txt | file | 32B | text/plain | -rw-r--r-- |
| /photo.png | file | 4K | image/png | -rw-r--r-- |