2

I am using doxygen for creating JavaDoc for my project. but after running doxygen- all the output files is under the same folder- the output root folder. for example- I have Foo class and in it- A and B structs. What I want is the under the root folder will be folder "Foo" and under the "Foo" folder will be the A and the B structs (in JavaDoc I have it. only in doxygen I dont have it.)

Do you know if there is flag in doxygen that can output the files in folder hierarchy?

1 Answer 1

2

No there is no such option.

Question is why is it important how the output is structured if you view it with a browser anyway? You should not really care.

In case you are worried about slow file access due to too many files in one directory you should enable the CREATE_SUBDIRS option. This does distribute the files over multiple directories but not in the way you requested it.

Sign up to request clarification or add additional context in comments.

2 Comments

I think that this option is very important because That way it is much more clear to the user what the structure and hierarchy of the code. (like JavaDoc). At the end- I wrote a c# code that runs on Doxygen output folder and organize the directories by the right structure. (I did it by running the JS pages)
So you expect that a reader of the documentation will look at the generated HTML files on disk (or at least their names as they appear in the URL) rather than using a browser?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.