You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2001/07/17 09:14:10 UTC

[Bug 2648] - Delete does not delete all sub directories

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2648

*** shadow/2648	Mon Jul 16 23:39:43 2001
--- shadow/2648.tmp.20484	Tue Jul 17 00:14:10 2001
***************
*** 2,9 ****
  | Delete does not delete all sub directories                                 |
  +----------------------------------------------------------------------------+
  |        Bug #: 2648                        Product: Ant                     |
! |       Status: NEW                         Version: 1.3                     |
! |   Resolution:                            Platform: PC                      |
  |     Severity: Major                    OS/Version: Windows 9x              |
  |     Priority: Other                     Component: Core tasks              |
  +----------------------------------------------------------------------------+
--- 2,9 ----
  | Delete does not delete all sub directories                                 |
  +----------------------------------------------------------------------------+
  |        Bug #: 2648                        Product: Ant                     |
! |       Status: RESOLVED                    Version: 1.3                     |
! |   Resolution: WORKSFORME                 Platform: PC                      |
  |     Severity: Major                    OS/Version: Windows 9x              |
  |     Priority: Other                     Component: Core tasks              |
  +----------------------------------------------------------------------------+
***************
*** 23,26 ****
  		<delete includeEmptyDirs="true" quiet="true" verbose="true">
  			<fileset dir="${build.home}" />
  		</delete>
! 	</target>
--- 23,34 ----
  		<delete includeEmptyDirs="true" quiet="true" verbose="true">
  			<fileset dir="${build.home}" />
  		</delete>
! 	</target>
! 
! ------- Additional Comments From steve_l@iseran.com  2001-07-17 00:14 -------
! The most likely cause is that one of the directories is in use (perhaps from 
! java code still executing) so the delete task couldnt delete it. But you arent 
! going to find out while you insist on not being told what the problem is. 
! 
! Why not try the same call with quiet="false" and see exactly what is stopping 
! ant from deleting your directory tree?