[Q]Remove Directory in Win2k

Mirko Liss mirko.liss at web.de
Sun Jul 15 13:21:40 EDT 2001


On 15 Jul 2001, ·Q¤@¤U wrote:
>    import os
>    os.mkdir('test')
>    os.remove('test')
> 
> How to remove directory in NTFS?

Perhaps you want to browse the nice documentation that came 
with your Python distribution or take a look at the FAQ at
www.python.org . 

You can get quick info regarding your question with:
>>> import os
>>> dir(os)
>>> print os.remove.__doc__
>>> print os.rmdir.__doc__
>>> print os.removedirs.__doc__


Friendly regards,

Mirko Liss




More information about the Python-list mailing list