4

How do I decide the source code folder structure (bin, lib, src, config etc.) for Java applications? I mainly want to develop applications related to Data Mining and Information Retrieval. Are there sources or books where I can learn more about this?

Has QUIT--Anony-Mousse
  • 76,138
  • 12
  • 138
  • 194
Deep Wine Red
  • 107
  • 2
  • 2
  • 5

1 Answers1

7

It won't be the same for Java and Python.

For Java, it depends on build automation tool you use. If you decide to use Maven, it will suggest you the source folder code sructure. See the Introduction to the Standard Directory Layout. Ant uses another directory structure: Building with Ant: Directory Structure.

As for Python, see this question: What is the best project structure for a Python application?

Community
  • 1
  • 1
utapyngo
  • 6,946
  • 3
  • 44
  • 65