source:
trunk/packages/python-routefs/routefs/examples/dictexfs.py
@
1963
Last change on this file since 1963 was 981, checked in by broder, 16 years ago | |
---|---|
|
|
File size: 225 bytes |
Line | |
---|---|
1 | #!/usr/bin/python |
2 | |
3 | import routefs |
4 | |
5 | class DictExFS(routefs.DictFS): |
6 | files = dict(Hello='World', |
7 | Directory=dict(a='a', b='b', c=routefs.Symlink('a'))) |
8 | |
9 | if __name__ == '__main__': |
10 | routefs.main(DictExFS) |
Note: See TracBrowser
for help on using the repository browser.