Re: A faster shutil.rmtree or maybe a command.

2005-10-11 Thread martijn
A little. I think its yust to big to handle it. I'm going to ask it in a freebsd forum, maybe they know how to speed up. Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: A faster shutil.rmtree or maybe a command.

2005-10-11 Thread Giovanni Bajo
[EMAIL PROTECTED] wrote: > Sometimes I must delete 2 very big directory's. > The directory's have a very large tree with much small file's in it. > > So I use shutil.rmtree() > But its to slow. > > Is there a faster method ? Is os.system("rm -rf %s" % directory_name) much faster? -- Giovanni Ba