Tagged Questions
Questions that relate to the organization of files and directories in a filesystem.
63
votes
7answers
13k views
What is the best project structure for a Python application?
Imagine that you want to develop a non-trivial end-user desktop (not web) application in Python. What is the best way to structure the project's folder hierarchy?
Desirable features are ease of ...
34
votes
3answers
5k views
OO Design in Rails: Where to put stuff
I'm really enjoying Rails (even though I'm generally RESTless), and I enjoy Ruby being very OO. Still, the tendency to make huge ActiveRecord subclasses and huge controllers is quite natural (even if ...
15
votes
4answers
3k views
Storing Directory Hierarchy in a Key-Value Data store?
What is a clean/efficient method for storing the directory Hierarchy/tree in a Key-Value database (in my case MongoDB but any of them).
For example a tree structure
- Cars
+ Audi
+ BMW
...
15
votes
3answers
12k views
How to [recursively] Zip a directory in PHP?
Directory is something like:
home/
file1.html
file2.html
Another_Dir/
file8.html
Sub_Dir/
file19.html
I am using the same PHP Zip class used in PHPMyAdmin ...
13
votes
8answers
4k views
What Is Your Software Development Directory Structure?
I have been experimenting with directory structures and am currently using the one below:
|
|_projects__
| |
| |_blog.com_
| | |_mockups
| | ...
12
votes
9answers
3k views
SVN: Checkout/export only the directory structure
is there a way to perform a SVN checkout (or export), which would fetch only the directory structure, i.e. no files?
Thanks in a advance.
10
votes
4answers
1k views
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 that had no spaces, but now I have a path that has spaces and the command is failing.
Command ...
8
votes
3answers
4k views
Directory structure for C++ library
I am working on a c++ library. Ultimately, I would like to make it publicly available for multiple platforms (linux/windows at least), along with some examples and python bindings. Work is progressing ...
7
votes
1answer
305 views
Organizing a PHP project
What It Is
Here is what I've done so far:
core/
controllers/ (contains the controllers used by the app)
models/ (contains the models used by the app)
views/ (contains the views used by the app)
...
6
votes
3answers
173 views
Maven directory structure: good place for SQL (DDL, …) scripts
What's the "best" place for SQL, DDL, ... scripts in the Maven standard directory structure?
See http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html
I bet ...
6
votes
2answers
114 views
How does Git record (or more likely, represent) file paths and names for its blobs, and then identify renames?
I'm trying to get my head around the way that git manages to 'remember' a file's name and its path, given that it only stores file content within a blob. Is the explanation in link here by Abizem a ...
6
votes
1answer
1k views
Limit depth for recursive file list in linux
Is there a way to limit the depth of a recursive file listing in linux?
The command I'm using at the moment is:
ls -laR > dirlist.txt
But I've got about 200 directories and each of them have ...
6
votes
4answers
182 views
source code trees: wide or deep
After writing a few python appengine apps I find myself torn between two approaches to organizing my source code tree: wide or deep.
For concreteness, consider an internal application for a small ...
6
votes
1answer
180 views
How much directory separation should my framework have?
Hey guys, just a small question here.. (hopefully!)
I've been trying a bunch of different directory structures for my PHP MVC framework. While doing this, I thought of a few reasons to separate ...
6
votes
1answer
2k views
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 to (uninitialized constant error). Is there something that I need to require to be able to do ...
6
votes
2answers
4k views
Where do I put static files for GWT app? war folder or public folder?
I have some JavaScript files, a main HTML file, a main CSS file, and some CSS files that get imported into the main one.
I understand that I can put static files in two places: a) the 'war' folder; ...
6
votes
3answers
5k views
C++ project source code layout
One of the popular way to organize project directory is more or less like this:
MyLib
+--mylib_class_a.h
mylib_class_a.cpp
mylib_library_private_helpers.h
...
6
votes
6answers
3k views
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 in DB - Yea or Nay?
Would you store binary data in database or in file ...
6
votes
4answers
2k views
Development directory Structure [closed]
I am wondering what directory structure are commonly used in development projects. I mean with the idea of facilitating builds, deploys release, and etc.
I recently used a Maven structure for a java ...
5
votes
3answers
611 views
Java Project Layout Best Practices for Ant-based Builds
I'm a little shocked that (if?) this precise questions hasn't been asked, but 15 minutes of scanning SO didn't turn up an exact match. (If I'm wrong, point me the right way and vote to close...)
...
5
votes
3answers
977 views
Folder structure of a PHP MVC framework… am I doing this right?
I'm currently working on my own PHP Framework, and I need some help figuring out if I'm going in the right direction or not...
The framework is both for my own use and to generally advance my PHP ...
5
votes
6answers
3k views
src/main/webapp directory not recognized by Eclipse
I use m2eclipse to import Maven Java projects in Eclipse.
It fails to recognize src/main/webapp as a source directory.
Graphically in the package explorer (or when I look into Java-Build-Path in the ...
4
votes
2answers
41 views
What is the best practice for saving libraries from their actual projects
For some educational reasons I've started a while ago to build my own library. It started out as a simple library with some usable classes, but as it still grows everyday and I've been using it ...
4
votes
1answer
402 views
cmake glob include while preserving directory structure
I'm new to cmake and I'm trying to install .hpp files while preserving directory structure.
So far I have
FILE(GLOB files "${CMAKE_CURRENT_SOURCE_DIR}/include/*.hpp"
...
4
votes
1answer
92 views
Separating application from app library, shared library, components, etc
I am creating an MVC application framework, using only libararies and components that I create myself (mainly a learning experience), but I'm not quite sure how to separate each kind of library from ...
4
votes
1answer
1k views
C - Starting a big project. File/Directory structure and names. Good example required
Starting a new big C multiplatform project, what rules should one follow to avoid difficulties later? For example, as a new developer, I can have difficulties to navigate myself around Linux Kernel ...
4
votes
4answers
2k views
Listing directory contents using C and Windows
I'm looking to list and store the contents of a directory in a struct using C on Windows.
I'm not necessarily looking for anyone to write out the code I'm looking for, rather point me in the right ...
4
votes
3answers
2k views
os.walk() python: xml representation of a directory structure, recursion
So I am trying to use os.walk() to generate an XML representation of a directory structure. I seem to be getting a ton of duplicates. It properly places directories within each other and files in the ...
4
votes
1answer
438 views
Storing source files outside project file directory in Visual Studio C++ 2009
Visual Studio projects assumes all files belonging to the project are situated in the same directory as the project file, or one underneath it.
For a particular project (in the non-Visual Studio ...
4
votes
5answers
261 views
Is my source/development file hierarchy a good one?
I'm looking to organise my source code file hierarchy. I'm a C# (.NET) developer and come from an only Windows background (no Linux/Mac). I plan on using Subversion for source control.
This is what ...
4
votes
2answers
2k views
How can I use the /home directory on Mac OS X
I've got a Mac that I can run either the Leopard (10.5) or Snow Leopard (10.6) version of OS X on. I'm using it to do web development/testing before publishing files to my production host.
On the ...
3
votes
0answers
64 views
Where do I put non-Ruby files in my gem?
I want to put an Upstart config file in my Ruby gem. Here's my current best guess
Gem::Specification.new do |s|
# ...
s.files = %w(
lib/rt_watchdog.rb
lib/upstart/rt_watchdog.conf
...
3
votes
2answers
139 views
How to work with (sub)directory renames in Git?
I'm looking at using Git for local developer VCS support (this is for multi-diciplinary development).
Previous practice was that the top level directory would be renamed (and a zip copy kept) for ...
3
votes
3answers
248 views
Unzip into TreeMap in Java
My question is relativly simple. Does anybody know a free library (LGPL) that is capable of unzipping a zipped file structure into a TreeMap (or a similar iteratable structure) for Java?
Point is, ...
3
votes
1answer
181 views
SQL Server: Fast way to load a directory tree (name, date modified)
(I looked for an answer, but nothing really solved my issue so far.)
I want to keep a table up to date with a file directory tree within Microsoft SQL Server 2005. I do the norm now:
insert into ...
3
votes
6answers
852 views
How to check if directory 1 is a subdirectory of dir2 and vice versa
What is an easy way to check if directory 1 is a subdirectory of directory 2 and vice versa?
I checked the Path and DirectoryInfo helperclasses but found no system-ready function for this. I thought ...
3
votes
2answers
3k views
iPhone Documents directory and UIFileSharingEnabled, hiding certain documents
I want the user to be able to access the files in the documents directory but am using core data and dont want the user to be able to access the store (the sqllite db), can i hide it from the user ...
3
votes
1answer
163 views
how to stop directory structure from being viewable in J2EE apps
in a J2EE app if user explicitly takes out the the ending page name then what is the best way to not show the directory structure?
Example:
/mycoolapp/somefolder/test.jsp
/mycoolapp/somefolder/ ...
3
votes
2answers
89 views
Is there an inbuilt way in PHP to parse a string like this: '/path/to/../../up/something.txt'
So say I have a string like so of a path
$path = '/path/to/../../up/something.txt';
Is there a way built into PHP to parse it and come up with a URL without the directory ups (../) ?
E.g.
$path = ...
3
votes
4answers
471 views
Unit Testing with Complex Directory Structure
I am trying to use test-driven development for an application that has to read a lot of data from disk. The problem is that the data is organized on the filesystem in a somewhat complex directory ...
3
votes
1answer
427 views
iPhone Referring to Resources in Seperate Directories
This question tells how one can create directories in your resources path. Once created, how does one reference these directories?
I have created an html directory with a structure for my internal ...
3
votes
4answers
463 views
organize source code with code on different platforms
if i have csharp code solutions in multiple platforms (winforms, asp.net mvc, asp.net, wpf, etc) but i also have lots of shared code used in more than one of the above platform, what is an ideal way ...
3
votes
1answer
86 views
Finding paths for packaged non-java files at runtime
So this might be a stupid question but...
I want to package a specific WSDL file in with an EJB project within eclipse. What would be the best way to refer to this file in my code?
I would like to ...
3
votes
3answers
359 views
Java: Nested Tree Structure
I am looking for a way to create a nested tree structure in my GUI. I have a few "boxes" that have items in them. I would like the boxes to be collapsed but expanded when clicked on, like the way ...
3
votes
4answers
871 views
AnkhSVN and/or TortoiseSVN - what's the recommended way to change directory structures?
I'm a fairly new user of Ankh and Tortoise. Currently ramping up on a VS2008 application suite that will have multiple .exe files, but with a lot of common code.
Currently, we're sharing code ...
3
votes
1answer
365 views
How to arrange the source code of an application made with SQLAlchemy and a graphic interface?
I'm developing an application using SQLAlchemy and wxPython that I'm trying to keep distributed in separated modules consisting of Business logic, ORM and GUI.
I'm not completely sure how to do this ...
3
votes
2answers
3k views
Document Directory in iPod Touch and iPhone
I'm designing an application that reads data to the iPod touch/iPhone that is sent to it via multicast sockets with UDP and I need to store it as a file in a document directory. Does that exist on on ...
3
votes
3answers
1k views
separate directory for iphone resources
iPhone resources by default show up in a "Resources" group that's visible in the main xcode project view. I want to be able to put them into an actual, physically separate directory at some arbitrary ...
3
votes
3answers
598 views
Where can I get an enterprise directory structure?
I want to be able to load up an Active Directory server with a realistic medium-to-large enterprise directory structure (groups, users) so that I can run performance tests on an application which ...
3
votes
3answers
309 views
Cache directory structure
I'm in the process of implementing caching for my project, after looking at cache directory structures, I've seen many examples like:
cache
cache/a
cache/a/a/
cache/a/...
cache/a/z
cache/...
cache/z
...