Top "Directory-structure" questions

Questions that relate to the organization of files and directories in a filesystem.

Golang microservice project structure

I'm at an initial stage of creating a microservice application in Go, but due to the way that the import …

go microservices directory-structure
Maven naming conventions for hierarchical multiple module projects

I've got a question on Maven naming conventions (groupId, artifactId and directory names) in a multiple module project with a …

maven naming-conventions hierarchy directory-structure multi-module
How do I have spaces in a MSBuild WebProjectOutputDir?

I am trying to call MSBuild from a command line. Everything was working fine when I was using a path …

msbuild directory-structure pathing
Java interfaces directory structure?

Should interfaces in Java reside in their own directory? Or should both the interface and its implementation be placed in …

java interface directory-structure
Recursively including all model subdirectories

How do you load all directories recursively in the models and lib directories? In application.rb, I have the lines: …

ruby-on-rails model autoload directory-structure
RAILS_ROOT require?

I'm trying to access the RAILS_ROOT constant in a file residing in the /lib directory, but I'm not able …

ruby-on-rails ruby directory-structure constants require
Tips for managing a large number of files?

There are some very good questions here on SO about file management and storing within a large project. Storing Images …

php directory-structure file-management
Path of current PHP script relative to document root

TL;DR: What alternatives to the last code sample on this page are there when trying to use relative links …

php relative-path directory-structure document-root magic-constants
Elegant way to take basename of directory in Python?

I have several scripts that take as input a directory name, and my program creates files in those directories. Sometimes …

python file-io filesystems directory-structure
In ASP.NET MVC, where is the "best practice" place (folder) to put my Entity-Framework DataContext class?

I've seen a few projects with Entity Framework DataContext classes in the "Models" folder, but since it's not really a …

asp.net-mvc entity-framework directory-structure