Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-dev] Problem copying files from eclipse plugin to source project


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



__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

Back to the top