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

learn more… | top users | synonyms

10
votes
4answers
519 views

How to reorganize the folder structure of my units in Delphi?

I started a prototype with Delphi with all source files under one single directory. Now, I want to reorganize everything with folders. I found two way to do this. 1/ First is to open each unit in ...
0
votes
1answer
163 views

Separating Spring and Dojo single page app codebases

I'm working on a web application with a Spring Roo REST API backend and a Dojo single-page client app. Spring Roo provides a handy admin interface (with Web MVC) out of the box, so I'd like to keep ...
3
votes
1answer
188 views

FAT16 directories

I'm working on a low-level application which uses a FAT16 file system structure on a resource-constrained microcontroller which necessitates that I write my own custom access code. I've already looked ...
1
vote
1answer
89 views

how to create a txt file with columns being the descending sub-directories in Linux?

My data follow the structure: ../data/study_ID/FF_Number/Exam_Number/date, Where the data dir contains 176 participants` sub-directories. The ID number represents the participants ID, and each of ...
0
votes
2answers
246 views

iOS Directory Structure - What's Snapshots file?

I was digging into the directory structure of iOS /Library/Caches/ folder and I found a file named "com.BlueChips.MyApp" and another file named "Snapshots" inside the above folder. The name of my ...
0
votes
3answers
53 views

Making every module in a package accessible from within?

How is a Python package supposed to be structured to make everything possible for any module inside of it? My file structure is as follows: Project/ |---log/ | |---some logs | ...
0
votes
0answers
170 views

large Sencha Ext app structure [closed]

I'm looking for some good guidelines to organize a very large Sencha Ext application. I've searched the web for some good samples but they all are very small or don't follow the MVC structure. So ...
0
votes
0answers
75 views

Android JNI sources get copied into bin/classes?

I'm writing an Android app in Eclipse, and part of the project is a JNI library. Surprizingly, some part of the Eclipse/Android NDK toolchain likes to maintain a copy of all my C++ sources in ...
1
vote
2answers
51 views

How best to include files like css and javascript, when you have multiple level folders?

First, I've always done my sites, with every file in the root folder. Because of that, I've never had to do a different, if only slightly, path to my css and includes. Having read a bit into SEO ...
2
votes
1answer
187 views

Strange new directory structure in Django-1.4.1?

I've just installed the latest version of Django (1.4.1) on Ubuntu 12.04. The new docs and everything else I've been able to find seems to think the directory structure should be as follows: mysite/ ...
0
votes
1answer
338 views

CAB Files MAKECAB.exe Way to store directory structure

I was hoping someone could tell me if there is a way to store the directory structure of the files I want when creating a CAB File using makecab.exe? Or if there are other utilities to do this and ...
0
votes
1answer
107 views

Where to put unit tests helper source files in my directory structure

I have the following directory structure in a javascript project /src /test The test directory is an image of src directory, where each file of the first has a related test file in the second. ...
0
votes
3answers
315 views

How to get project root directory in php with user friendly URL

I created initialize.php to define my project's root directory. defined('DS') ? null : define('DS', DIRECTORY_SEPARATOR); defined('SITE_ROOT') ? null : define('SITE_ROOT', DS.'works'.DS.'myproject'); ...
0
votes
0answers
76 views

Watch folder and transcode videos

I have a folder with multiple sub-folders, each of which contains multiple file formats like FLV, F4V, WMV, MOV, AVI, M4A, VOB & MPG . I want to convert all files to MP4 format and save the ...
0
votes
0answers
20 views

Directory went missing when moving through symlinks

I have a central directory (src) that contains symlinks to various useful directories. I entered a directory on another path (not below src) through a symlink: src $ cd work And then tried to move ...
1
vote
1answer
213 views

ASP.net master pages, web root, and directory structure

I've revised (but not changed) this question for brevity; see edits for previous version(s) I have an ASP.net website (non-application, non-MVC) with the following (proposed) file system hierarchy: ...
0
votes
1answer
38 views

Where do xml files fit in a js project directory structure?

I'm working on a js project that follows this directory structure: /doc /src /test /etc This client-side js app can be configured by a server app (a whole separate application) via json. We define ...
0
votes
0answers
35 views

project directory conventions for input and output [closed]

I'm debating what is the best way to organize input and output files in a project directory structure. In a typical project, different parts of the project go in different directories. For instance, ...
0
votes
3answers
133 views

Is it typical to put all pages in subfolders? Even if it's a single page?

More and more I find websites that show this kind of links: website.com/page/ and testing if there's in index.php inside the folder like website.com/page/index.php I found always true. So my ...
4
votes
2answers
3k views

Visual Studio 2010: Solution Explorer not showing project directory structure

I'm using a new install of MS Visual Studio 2010 and cannot seem to get the Solution Explorer to show the project directory structure (instead of a just list of all files in the project for each ...
1
vote
0answers
264 views

File structure on a backbone web application

I am working on a web application that runs through backbone and makes use of the router. On success of certain events I want to redirect users to a static success page. What is a good naming ...
4
votes
1answer
1k views

What is the correct or preferred directory structure for a Zend Framework 2 module?

I would like to get to grips with Zend Framework 2 by using it for a small project. I have been through various blogs articles, docs and of course the fantastic tutorial by Akrabat (Rob Allen). ...
0
votes
1answer
79 views

How to make a python Package?

Here is my structure, main.py folder1\ button.py folder2\ picturebutton.py folder3\ listbox.py folder4\ customlistbox.py folder5\ ...
0
votes
0answers
59 views

Where to keep library in source code directory structure and build tools

My project have following components. Third party library with custom source code path. Third party library without any changes in source code as archive files(zip). Our own common library ...
0
votes
0answers
44 views

unix java EE 6 tutorial fix broken paths

I'm on Linux and I just installed the Java EE 6 glassfish server and ran the update tool to install the tutorial. But the tutorial installed all the files to the same folder with directories ...
3
votes
1answer
108 views

RegEx with character set inside positive lookbehind, Is it possible?

I need to match "name" only after "listing", but of course those words could be any url directory or page. mydomain.com/listing/name so the only thing I can "REGuest" (request) is to be some parent ...
1
vote
1answer
327 views

MVC based system general files/folders structure

I'm trying to figure out the correct layout of classes, methods, files and folders for a MVC design based system. Let say we have a Page. Page is a simple page with title, text and a sub menu. And it ...
3
votes
1answer
274 views

Best practices for structuring a C program (for CMake build)

I have a C program that was handed down to me by a developer who left. I am trying to figure out exactly what he had goign on and get the software re-arranged into something more logical so I can ...
0
votes
6answers
117 views

could someone please explain to me what the @“” has to do with the System.IO.Path.Combine method?

Let's say I have a folder like ClientBin in my Visual Studio C# Web Application. I'm confused as to what the @"" will do in the following C# code that tries to create a path to a Directory: String ...
1
vote
2answers
101 views

Ruby 1.9.3 - Locate file local to ruby program regardless of where program is called from

I've been working on my first Ruby project, and in the process of trying to organize my files into different directories, I've run into trouble with having .rb files load non-ruby files (e.g. .txt ...
0
votes
1answer
128 views

Migration from existing Java EE project to maven without changing directory layout

I have seen many questions concerning this issue, but I'm new to this topic and I have to convert previously written project (standard, Eclipse Java EE project) into Maven. My first problem is that ...
0
votes
1answer
3k views

MySql: How to turn on the general query log via my.cnf?

I'm trying to use a program called MySql Administrator, though I'd also be willing to use the Command Prompt (I am on Windows XP). Typically I start MySql via the XAMPP control panel, and I would ...
3
votes
1answer
844 views

How to create OSGI project in IntelliJ Idea?

I am trying to create an OSGI project on IntelliJ Idea but so far couldn't make it. I can change the facet after creating a Java project but it isn't the one I want. In eclipse, while I am creating ...
0
votes
1answer
96 views

My php app directory structure is a labyrinth

I'm working on an old php web application. The problem is the organization of all the files is more or less random. My favorite is at one level there is both an 'include' folder and an 'includes' ...
2
votes
1answer
258 views

How to organize and structure user albums of images in PHP/MySQL

One of my sites has a lot of users. They currently each have one profile pic. To keeps things fast and efficient, I've spread the profile images out based on their unique UserID so that no directory ...
-3
votes
2answers
153 views

Where should a PHP framework be placed on a webserver?

Does anyone have an idea on where is it best to upload a PHP framework such as Yii, or CodeIgniter? Should I upload the files into a sub-directory within my website, or right into a root directory ...
1
vote
1answer
131 views

Javascript .js File Guidelines - How do I use a function outside of this file?

So two part question here. Basically, what is the proper practise for javascript function locations? I assumed it would be to have several MyScriptFile.js files, each with a few functions instead of ...
0
votes
0answers
75 views

Tix DirList or DirTree listing files AND directories

Is there any way to use the Tix "DirList" or "DirTree" and allow file listing as well, instead of just sub directories? Also, is there any way to define what directory it automatically opens to, ...
0
votes
1answer
84 views

apache Web server directory hide documents

I have an apache server where I have disabled the ability to read the contents of a directory where you specify the directory path ie. http://www.domain.com/directory I have renamed a directory that ...
1
vote
1answer
165 views

How can I use git-rm and file globbing to remove files from certain directories but not subdirectories of those directories?

The scenario I'm trying to remove some files from the entire history of a git repository. They all share a couple of common criteria: They have "settings" in the file name. They may also have ...
2
votes
3answers
139 views

How can I efficiently select 100 random JPG files from a directory (including subdirs) in Python?

I have a very large directory of files and folders. Currently, I scan the entire directory for JPGs and store them in a list. This is really slow due to the size of the directory. Is there a faster, ...
7
votes
1answer
683 views

Rails + Delayed Job: Where is the correct place to store custom job classes?

I'm new to delayed_job and i'm starting to write my own "custom jobs". Each custom job is basically just a regular ruby class but i'm not sure where these custom job classes are normally stored ...
0
votes
1answer
82 views

Does a large number of directories negatively impact performance?

I'm intending to use files to store data as a kind of cache for PHP-generated files, so as to avoid having to re-generate them every time they are loaded (their contents only change once a day). One ...
1
vote
0answers
447 views

Trying to add a new directory in the root of my server

just moved from shared hosting to a dedicated server, trying to create two new directorys in the root of the server but I get this when I use the Plesk control panel Error: Unable to create directory ...
-1
votes
1answer
47 views

Ignore warnings in entire subfolder

I have resource files connected with some source in a sub directory, like this: __init__.py one.py subdir/ __init__.py two.py dir_two_resources_but_causes_lots_of_warnings/ How can I ...
1
vote
1answer
202 views

Getting sub directories and files using python

What would be the best method of getting sub directories of a drive including files located within them? Would it be best to use os.listdir() and filter out directories from files by checking if they ...
2
votes
2answers
465 views

Recursively creating hardlinks using python

What I basically would like to do is cp -Rl dir1 dir2. But as I understand it, python only provides shutils.copytree(src,dst) which actually copies the files, but has no possibility of hardlinking the ...
0
votes
0answers
34 views

How change their filesystem structure from development to production?

I am doing front end work on a web app where the directories for development are nothing like what they are on the live website. Is this standard practice? and what is being used on the backend to ...
0
votes
1answer
329 views

Where does Joomla store article images?

Where in the Joomla directory can I look to find images stored in articles?
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 ...

1 2 3 4 5 9