Questions that relate to the organization of files and directories in a filesystem.
45
votes
5answers
33k 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 ...
139
votes
6answers
33k 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 ...
91
votes
3answers
16k 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 ...
4
votes
2answers
4k 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 ...
9
votes
6answers
4k 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
7k 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 ...
24
votes
3answers
8k 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 ...
6
votes
3answers
3k 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 ...
2
votes
5answers
3k views
Thousands of images, how should I organize the directory structure? (linux)
I am getting thousands of pictures uploaded by thousands of users on my Linux server, which is hosted by 1and1.com (I believe they use CentOS, but am unsure of the version). This is a language ...
4
votes
3answers
4k 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 ...
3
votes
1answer
3k views
Ideal Folder Structure of MVC framework [closed]
I would like to ask what is the ideal folder structure for a MVC framework that should be able to support multiple installations. For example, I install xyz framework and i run two or more sites based ...
11
votes
4answers
7k views
asp.net mvc - subfolders
How does the new Microsoft asp.net mvc implementation handle partitioning your application - for example:
--index.aspx
--about.aspx
--contact.aspx
--/feature1
--/feature1/subfeature/action
...
3
votes
2answers
527 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 ...
17
votes
10answers
7k 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
2answers
9k 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; ...
7
votes
2answers
176 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
6answers
3k 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 ...
5
votes
2answers
938 views
Changing a directory structure in Mercurial
I have a single-person single-folder mercurial repository. The directory structure is simple:
P104
lecture_notes
files under version control live here
After a while I realize I want to ...
3
votes
3answers
2k 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 ...
2
votes
3answers
568 views
An XML language for describing file attributes of a directory tree?
I have an application in mind which will record directory listings of a file
system in text form. That is, it should say something like:
File name is: abc.txt
Last modification date is: ...
2
votes
3answers
2k views
How to create directories specified by a mapper in Ant
Given a fileset
<fileset id="myFiles" dir=".">
<include name="**/*.file"/>
</fileset>
How do I create a sub-directory at each file in the set, named after the filename without ...
0
votes
3answers
780 views
GWT Project Structure
Right now in our project, we have below mentioned structure. Our project is mainly using GWT & Spring framework.
com.customername.projectname.client.module name
...
7
votes
1answer
17k views
C# How to populate TreeView with file system directory structure
i am new with Nodes here.. :) i came up with this algorithm but it only shows the list of parent nodes.. like this..
a
a.txt
b
c
c
m
n
b
o
p
etc...
i want the next node will be ...
10
votes
4answers
8k views
Are there best-practices for the structure of a website?
Are there any guidelines on how to structure the directories of a website?
Where to put the PHP files, Javascript, HTML pages, resources like images, etc?
10
votes
3answers
7k 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 ...
17
votes
1answer
7k 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 ...
8
votes
3answers
6k 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
...
7
votes
1answer
452 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
252 views
Streaming recursive descent of a directory in Haskell
I am trying to do a recursive descent of a directory structure using Haskell. I would like to only retrieve the child directories and files as needed (lazily).
I wrote the following code, but when I ...
6
votes
4answers
5k 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 ...
3
votes
3answers
645 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, ...
11
votes
4answers
2k 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
2answers
1k views
What should the view file/directory structure be in ASP.NET MVC?
I'm confused with how views are organized, and it is important to understand this as ASP.NET MVC uses conventions to get everything working right.
Under the views directory, there are subdirectories. ...
5
votes
1answer
69 views
Measuring “closeness” in large source trees
As part of a question I posed earlier about finding the best match between two sources, where one has an active git repo and the other has no git history, I wrote a perl script to find the closest git ...
5
votes
1answer
414 views
Delphi - Comparing two pathnames when one is UNC and one is drive letter-specified
I have a situation where a user can specify two separate pathnames, and I need to check whether one pathname is "inside" the other one. I can do this if both pathnames are UNC, or both are ...
3
votes
2answers
570 views
Keeping directory structure when creating frameworks in xcode
I'm trying to create a framework in Xcode and have successfully done so, but as it turns out, Xcode flattens the directory structure of when copying headers in the Copy Headers build phase. I've tried ...
3
votes
2answers
126 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 = ...
2
votes
2answers
357 views
Android resources “best match” fallback logic
I've read the docs about Android Resources and I think I've understood the best-matching logic used by android to identify in which directory a particular resource should be searched first.. Supposing ...
6
votes
1answer
2k 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 ...
5
votes
1answer
849 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 ...
3
votes
1answer
546 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
3answers
3k views
C# OpenFileDialog Lock To Directory
I am making a software that needs to ONLY be able allow people to select files and folders using the OpenFileDialog that are in the same directory as the program and that are in deeper folders. I ...
2
votes
2answers
2k views
What is the correct way to use the stat() function to test if a DIRENT is a directory or a file?
I'm having some trouble with the 'if(S_IFDIR(stbuf.st_mode))' line. Is this the correct way to test for a directory to recurse into? The function at the moment seems to do it right for 1 or 2 loops ...
2
votes
3answers
2k views
c# MVC - folder structure - where to put classes?
In asp/net MVC, the project is divided into Models, Views and Controllers. Fine so far.
Say I have a Class 'person', which the people controller populates with data, using the person model.
Where ...
1
vote
1answer
95 views
Git repository structure and modularity
The team I worked with decided to move away from svn towards git, which is a good thing I believe. I'm in charge of the migration and to re-structure the current svn layout.
What we currently have in ...
1
vote
1answer
387 views
Building A Log Reader with PHP RecursiveTreeIterator
I have this dir structure for logs
logs
-2012
--01
---01.php
---02.php
--02
---20.php
---23.php
I want to be able to use PHP's RecursiveTreeIterator to be able to display a tree having actual php ...
1
vote
3answers
349 views
Should external libraries be inside or outside my PHP project directory structure?
I'm building my first PHP project, and am not sure where to put external libraries like doctrine. I could put them inside my app, making it easier to reference with a relative path:
myproject
app
...
1
vote
1answer
917 views
Starting a Ruby project: github + build tool
I am starting out to play around with Ruby and trying to make a desktop app using Ruby and wxRuby.
So, to start out with a new ruby only project, I have few questions:
I need a standard directory ...
1
vote
3answers
685 views
Why do Java source files go into a directory structure?
as weSuppose that I am creating a Java project with the following classes
com.bharani.ClassOne
com.bharani.ClassTwo
com.bharani.helper.HelperOne
com.bharani.helper.support.HelperTwo
with files put ...
1
vote
3answers
267 views
Why would this string be returning false in PHP when realpath()'d?
Here is my string
$newPath = '/~new/assets/js/../packages/prettyphoto/js/jquery.prettyPhoto.js';
Now check this output
var_dump($newPath); // string(64) ...