Reputation: 4429
I would like to create a pseudo filesystem like /proc to access an applications configuration.
How could i achieve this or where could i find some introductory documentation about it?
Upvotes: 5
Views: 1571
Reputation: 185852
The easiest way is to use FUSE. This is particularly easy with high-level language bindings, such as fuse-python.
Upvotes: 18