Re: [ilugd] Delete thousands of folders and files

2008-04-07 Thread Sharninder
> In Konquerer you have seprate buttons for move to trash and Delete. > As for .Trash, all this is on a separate NFS, so mv won't be fast too. > However mv on the same filesystem is instant. > SO thats why I do a mv to somedir.old, and start deleting it, and > carry on with my other work. AFA

Re: [ilugd] Delete thousands of folders and files

2008-04-07 Thread Tanveer Singh
On Tue, Apr 8, 2008 at 9:54 AM, Vikas Rawal <[EMAIL PROTECTED]> wrote: > > > Don't have root access, so I have to improvise. > > The fastest solution which I have discovered till now is Konqueror. > > Would mv to .Trash be as fast? Deleting a file/directory on nautilus > moves it the trash bi

Re: [ilugd] Delete thousands of folders and files

2008-04-07 Thread Vikas Rawal
> Don't have root access, so I have to improvise. > The fastest solution which I have discovered till now is Konqueror. Would mv to .Trash be as fast? Deleting a file/directory on nautilus moves it the trash bin. I do not know what a delete on konqueror does. But there has to be a command line

Re: [ilugd] Delete thousands of folders and files

2008-04-07 Thread Tanveer Singh
On Mon, Apr 7, 2008 at 10:16 PM, Karanbir Singh <[EMAIL PROTECTED]> wrote: > Tanveer Singh wrote: > > Currently I do this > > mv somedir somedir.old > > find somedir.old -name "*" -exec rm -rf {} \; > > I was hoping for some "quick delete" kind of stuff. > > What filesystem is this

Re: [ilugd] Delete thousands of folders and files

2008-04-07 Thread Anupam Jain
On Mon, Apr 7, 2008 at 1:57 PM, Tanveer Singh <[EMAIL PROTECTED]> wrote: > I have a directory called "somedir" > Inside this directory there are thousands of subdirectories(20,000+) > and even more number of small files(100,000+) > If I do a \rm -rf somedir, it takes hours. > Is there a way to

[ilugd] Delete thousands of folders and files

2008-04-07 Thread Tanveer Singh
I have a directory called "somedir" Inside this directory there are thousands of subdirectories(20,000+) and even more number of small files(100,000+) If I do a \rm -rf somedir, it takes hours. Is there a way to quickly delete this directory. Currently I use Konqueror and it does the job more quick