Re: [Nant-users] deleting directory nasty problem

2005-10-25 Thread Gert Driesen
ourceforge.net Subject: Re: [Nant-users] deleting directory nasty problem I think the delete task should pass if no traces of that directory remain. (covers the case DirNotExist) However if the task was for some reason unable to remove the dir due to locks etc. the task should fail.

RE: [Nant-users] deleting directory nasty problem

2005-10-24 Thread Williams, Eric
EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Gert Driesen Sent: Thursday, October 20, 2005 12:49 PM To: Dean Hiller; nant-users@lists.sourceforge.net Subject: Re: [Nant-users] deleting directory nasty problem Dean, I agree that this should indeed by the behaviour of the task, and I'

RE: [Nant-users] deleting directory nasty problem

2005-10-21 Thread Gert Driesen
L PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Eric Williams > Sent: donderdag 20 oktober 2005 19:08 > To: nant-users@lists.sourceforge.net > Subject: RE: [Nant-users] deleting directory nasty problem > > > Third! I don't like having to script the extra

Re: [Nant-users] deleting directory nasty problem

2005-10-20 Thread Gary Feldman
Gert Driesen wrote: Dean, I agree that this should indeed by the behaviour of the task, and I've brought this change up several times. Perhaps now would be a good time to decide once and for all, and clearly document it. Should we modify the task to no longer fail if the file or directory d

RE: [Nant-users] deleting directory nasty problem

2005-10-20 Thread Eric Williams
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Gert Driesen Sent: Thursday, October 20, 2005 12:49 PM To: Dean Hiller; nant-users@lists.sourceforge.net Subject: Re: [Nant-users] deleting directory nasty problem Dean, I agree that this should indeed by the behaviour of the task, and

RE: [Nant-users] deleting directory nasty problem

2005-10-20 Thread Anderson, Kelly
2:57 AM > To: nant-users@lists.sourceforge.net > Subject: Re: [Nant-users] deleting directory nasty problem > > > > I think the delete task should pass if no traces of that > directory remain. > (covers the case DirNotExist) > However if the task was for some reason unable to remove

Re: [Nant-users] deleting directory nasty problem

2005-10-20 Thread Gert Driesen
- Original Message - From: "Bill Arnette" <[EMAIL PROTECTED]> To: Sent: Thursday, October 20, 2005 4:13 PM Subject: RE: [Nant-users] deleting directory nasty problem > By the same token, should not succeed if the directory already > exists? Fail only if there

RE: [Nant-users] deleting directory nasty problem

2005-10-20 Thread Bill Arnette
: Thursday, October 20, 2005 4:57 AM To: nant-users@lists.sourceforge.net Subject: Re: [Nant-users] deleting directory nasty problem I think the delete task should pass if no traces of that directory remain. (covers the case DirNotExist) However if the task was for some reason unable to remove the dir

Re: [Nant-users] deleting directory nasty problem

2005-10-20 Thread Pillai, Gishu R (GE Energy)
] [mailto:[EMAIL PROTECTED] Behalf Of Gert Driesen Sent: Thursday, October 20, 2005 12:49 PM To: Dean Hiller; nant-users@lists.sourceforge.net Subject: Re: [Nant-users] deleting directory nasty problem Dean, I agree that this should indeed by the behaviour of the task, and I've brought this chan

RE: [Nant-users] deleting directory nasty problem

2005-10-20 Thread Crowhurst,Christian
October 2005 08:19 To: Dean Hiller; nant-users@lists.sourceforge.net Subject: Re: [Nant-users] deleting directory nasty problem Dean, I agree that this should indeed by the behaviour of the task, and I've brought this change up several times. Perhaps now would be a good time to decide once an

Re: [Nant-users] deleting directory nasty problem

2005-10-20 Thread si
Hi Dean, > what if I want it to be just like java's ant where I am doing a clean target > and I want it to pass if > > The directory already does not exist….ie. clean was successful because it > was already clean > I want it to fail if it tries to delete ${output} and cannot because a file > is lo

Re: [Nant-users] deleting directory nasty problem

2005-10-20 Thread Gert Driesen
Subject: [Nant-users] deleting directory nasty problem Okay, so the following will fail if the directory does not exist the following will pass if the directory does exist what if I want it to be just like java's ant where I am doing a cle

[Nant-users] deleting directory nasty problem

2005-10-19 Thread Dean Hiller
Okay, so the following will fail if the directory does not exist       the following will pass if the directory does exist       what if I want it to be just like java’s ant where I am doing a clean target and I want it to pass if The direct