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)

PathKindSizeMIMEPermissions
/docsdir-inode/directorydrwxr-xr-x
/docs/guide.mdfile35Btext/markdown-rw-r--r--
/docs/data.jsonfile33Bapplication/json-rw-r--r--
/srcdir-inode/directorydrwxr-xr-x
/src/enginedir-inode/directorydrwxr-xr-x
/src/engine/vfs.csfile21Bapplication/octet-stream-rw-r--r--
/src/main.csfile61Bapplication/octet-stream-rw-r--r--
/readme.mdfile60Btext/markdown-rw-r--r--
/notes.txtfile32Btext/plain-rw-r--r--
/photo.pngfile4Kimage/png-rw-r--r--