/filesystems-objc/LoopbackFS/README.txt

http://macfuse.googlecode.com/ · Plain Text · 17 lines · 12 code · 5 blank · 0 comment · 0 complexity · 7a82c16324021fad03759c02a6a9def0 MD5 · raw file

  1. LoopBackFS
  2. This is a simple but complete example filesystem that mounts a local
  3. directory. You can modify this to see how the Finder reacts to returning
  4. specific error codes or not implementing a particular UserFileSystem
  5. operation.
  6. For example, you can mount "/tmp" in /Volumes/loop. Note: It is
  7. probably not a good idea to mount "/" through this filesystem.
  8. You can build a .app version from LoopbackFS.xcodeproj and a standalone
  9. command line version using:
  10. gcc -o loop ../Support/NSError+POSIX.m LoopbackFS.m loop.m -I../Support \
  11. -framework MacFUSE -framework Foundation
  12. This will create a binary called "loop" in the current directory.