Re: [IronPython] os.mkdir and os.rmdir

2005-12-29 Thread Dino Viehland
] os.mkdir and os.rmdir I'd like to see os.mkdir and os.rmdir implemented in the next release of IronPython. Until then, this seems to work: import System import os os.mkdir = System.IO.Directory.CreateDirectory os.rmdir = System.IO.Directory.Delete Seo Sang

[IronPython] os.mkdir and os.rmdir

2005-12-28 Thread Sanghyeon Seo
I'd like to see os.mkdir and os.rmdir implemented in the next release of IronPython. Until then, this seems to work: import System import os os.mkdir = System.IO.Directory.CreateDirectory os.rmdir = System.IO.Directory.Delete Seo Sanghyeon ___ users ma