MFS
From Just Solve the File Format Problem
(Difference between revisions)
Line 15: | Line 15: | ||
* [https://github.com/fadden/CiderPress2/blob/main/DiskArc/FS/MFS-notes.md CiderPress MFS description] | * [https://github.com/fadden/CiderPress2/blob/main/DiskArc/FS/MFS-notes.md CiderPress MFS description] | ||
* [https://vintageapple.org/inside_o/pdf/Inside_Macintosh_Volume_II_1985.pdf#page=128 Inside Macintosh, Volume II (1985) Page II-119] | * [https://vintageapple.org/inside_o/pdf/Inside_Macintosh_Volume_II_1985.pdf#page=128 Inside Macintosh, Volume II (1985) Page II-119] | ||
+ | * [https://developer.apple.com/library/archive/samplecode/MFSLives/Introduction/Intro.html MFS Lives] | ||
[[Category:Macintosh]] | [[Category:Macintosh]] |
Latest revision as of 05:17, 23 April 2025
MFS (Macintosh File System) was the filesystem used on early Apple Macintosh computers for file storage on Apple double-density 3 1/2" disks. It was soon replaced with HFS (Hierarchical File System).
MFS stored files in a single flat structure without subdirectories; the illusion of "folders" was created by including a "directory handle" in each file entry so that the single directory could be scanned to find files that belong to a particular virtual folder. File names could be up to 255 characters, though Finder didn't support more than 63 or 31 characters (depending on the version). Resource Forks were introduced in MFS.
A MacFUSE implementation of MFS that seems to work is available at [1] (SVN: [2] ).