I have a complicated project with multiple 50+ files.
I would like to extract all these files into one single one, labeled with were they came from.
I might have code setup like this:
src
|
+ - Engine (folder)
| |
| + - Engine.java
| + - RenderExample.java
|
+ - test.java
+ - runningOutOfFileNames.java
I want all of that code extract to a single file to look like this:
src/Engine/Engine.java:
{...Code...}
src/Engine/RenderExample.java
{...Code...}
src/test.java
{...Code...}
src/runningOutOfFileNames.java
{...Code...}
I realise that this file will not be compilable, but I need to hand in the code for a school project (that was not intended to include code) and we are only allowed to submit one doc :/