| [platform-dev] (no subject) |
Im creating a new project wizard and need to copy files from a non java src folder to the new project on the filesystem. My project layout looks like this:
11/08/2007 10:04 AM <DIR> bin
11/08/2007 03:08 PM 226 build.properties
11/08/2007 10:50 AM <DIR> buildTools
11/08/2007 03:08 PM <DIR> icons
11/06/2007 10:52 AM <DIR> META-INF
11/07/2007 11:29 AM 1,346 plugin.xml
11/07/2007 12:44 PM <DIR> plugins
11/06/2007 10:52 AM <DIR> src
I want to copy the entire contents of buildTools to the new project and Im using the following code:
Enumeration<?> files =
pSourceBundle.getEntryPaths(pSource);
Where pSource = “\build\BuiltTools”;
The files enumeration is null.
Anybody have any ideas on how I can get to the root of that plugin
and copy the buildTools directory?
Thanks
Rob