I need to copy one folder with all content.
My folder structure is like this
Main Folder
folder1
`1.zip`
`2.zip`
Folder2
`3.zip`
`4.zip`
How to copy main folder with all these content using nant script.
Please help me. Thanks
I need to copy one folder with all content.
My folder structure is like this
Main Folder
folder1
`1.zip`
`2.zip`
Folder2
`3.zip`
`4.zip`
How to copy main folder with all these content using nant script.
Please help me. Thanks
<copy todir="newDir">
<fileset basedir="oldDir">
<include name="**/*" />
</fileset>
</copy>
© 2022 - 2024 — McMap. All rights reserved.