The file manager — Reocities Docs

The file manager

The file manager is the quickest route from an idea to a live page. It handles uploads, editing and folders in the browser.

Uploading

Drag files onto the file list, or use the upload button. Folders are created by uploading into a path, or with the new-folder control. Uploading a file with an existing name replaces it.

Editing in place

Click any text file to open the editor. It highlights HTML, CSS and JavaScript, and saves back to the same path. Because sites are static, a save is a deploy: refresh your site and the change is already live.

Folder structure

Nothing is enforced beyond index.html at the root, but a conventional layout keeps things manageable:

/index.html
/style.css
/about.html
/img/photo.jpg
/js/main.js

Which files can I host?

HTML, CSS, JavaScript, images, fonts, audio and video are all served as-is. Server-side languages are not executed — a .php file will be sent to the browser as text rather than run.