tags:

views:

28

answers:

2

it could be useful to export just the project layout, in a text format, for example :

src/main/java
*net.foo.bar
**MyFirstClass.java
src/main/config
*myconfigfile.properties 

etc

It could be useful for sharing and talking about project organization, without making a screenshot. And it will be possible to c/p a file name or a directory name .

A: 

does not the .classpath file from each project give more or less that info you need?

raticulin
That's an idea, but i would like to have the complete arborescence files in the export.
Antoine
A: 

I just find :

with bash :

$ ls -R 

it will export all directory, with all files under.

$ ls -R
.:
CVS  pom.xml  readme.txt  src  target
./CVS:
Entries  Repository  Root
./src:
CVS  docbkx  main  static
./src/CVS:
Entries  Repository  Root
./src/docbkx:
CVS  de  en  fr
./src/docbkx/CVS:
Entries  Repository  Root
Antoine