News:
New version 0.3 released 20 Sep 2002. ls() method improved, regexp added.
Current version is 0.3, so it is not that complete and possibly has bugs so try not to use it for mission critical tasks.
NO WARANTY!
NOTE that the remove() method is a very deadly one, be careful.
If you have comments, suggestions, modifications or patches then do not hesitate to send them to me.
Usage:
>>> fm = file_manager.FileManager('/test') >>> fm.ls() ['t1', 't2'] >>> fm.mkdir('tst') >>> fm.ls() ['t1', 't2', 'tst'] >>> fm.remove('tst') >>> fm.ls() ['t1', 't2'] >>> fm.pwd() 'C:\\test' >>>
move() method works as copy() and then remove().