Given the following entry:
<copy todir="Build.Documentation" >
<fileset basedir="c:\work\tmp.Documentation\Build.Documentation">
<include name="**/*" />
</fileset>
</copy>
I am getting the following output:
NAnt 0.85 (Build 0.85.1998.0; nightly; 21.06.2005)
Copyright (C) 2001-2005 Gerry Shaw
http://nant.sourceforge.net
...
[copy] Created directory 'C:\Work\PowerNodes\PowerNodes\01.1\Build.Documentation\Html\dotnetdiagramimages'.
[copy] Created directory 'C:\Work\PowerNodes\PowerNodes\01.1\Build.Documentation\Html\dotnetimages'.
[copy] Created directory 'C:\Work\PowerNodes\PowerNodes\01.1\Build.Documentation\Html\images'.
[copy] Created directory 'C:\Work\PowerNodes\PowerNodes\01.1\Build.Documentation\Html\script'.
[copy] Created directory 'C:\Work\PowerNodes\PowerNodes\01.1\Build.Documentation\Html\stylesheets'.
[copy] Created directory 'C:\Work\PowerNodes\PowerNodes\01.1\Build.Documentation\Html\webimages'.
[copy] Copying 7994 files to 'C:\Work\PowerNodes\PowerNodes\01.1\Build.Documentation'.
[copy] Copying 'c:\Work\tmp.Documentation\Build.Documentation\Html\PowerNodes.Cms~PowerNodes.Cms.EntityObjectSet.DocumentListPartStub~EntityObjectLinkChange.html' to 'C:\Work\PowerNodes\PowerNodes\01.1\Build.Documentation\PowerNodes.Cms~PowerNodes.Cms.EntityObjectSet.DocumentListPartStub~EntityObjectLinkChange.html'.
[copy] Copying 'c:\Work\tmp.Documentation\Build.Documentation\Html\PowerNodes.Mbr~PowerNodes.Mbr.UserAuthentificationType.html' to 'C:\Work\PowerNodes\PowerNodes\01.1\Build.Documentation\PowerNodes.Mbr~PowerNodes.Mbr.UserAuthentificationType.html'.
[copy] Copying 'c:\Work\tmp.Documentation\Build.Documentation\Html\PowerNodes.Cms~PowerNodes.Cms.Web.TemplateContext_fields.html' to 'C:\Work\PowerNodes\PowerNodes\01.1\Build.Documentation\PowerNodes.Cms~PowerNodes.Cms.Web.TemplateContext_fields.html'.
Explanation: this is copying a temp folder into its final location under the nant project dir. I need to curun certain operations from the higher up temp dir due to path length restrictions.
Anyhow, the direcftory contains short to 8000 files. It is a HTML help structure. Nearly all of them are in a Html subdirectory. Most of those end up in the base directory, not I nthe html subdirectory. You can see this in the parths of the output. The "Html" part of the path (which exists in the source) is removed in the target.
Anyone an explanation what I need to change?
Thomas