Questions that relate to the organization of files and directories in a filesystem.
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
331 views
Where does Joomla store article images?
Where in the Joomla directory can I look to find images stored in articles?
2
votes
2answers
361 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 ...
2
votes
1answer
137 views
Better to lump everything together under m/v/c folders or seperate module folders with m,v,c files?
In this wiki (https://github.com/mitsuhiko/flask/wiki/Large-app-how-to), the creator of flask (or whomever wrote the wiki) recommends the directory structure of seperate module folders with model, ...
0
votes
1answer
158 views
how do I create the URL “m.mysite.com” from mysite.com?
I believe a subdirectory would be mysite.com/m/index.htm. I would like the "m" at the front so as to appear "m.mysite.com".
What do I call that type of directory?
I currently have a stylesheet for ...
2
votes
1answer
143 views
Managing the paths of a directory tree in python
I have a python script that keeps track of several directory names as individual variables. Some of these directories may exist, while others may need to be created at execution time.
For example, if ...
1
vote
1answer
522 views
How to load and process files one at a time, using powershell
I got following script for loading about hundred thousand .doc files and run a program on them. Based on the output, files are grouped in to folders. I tested the script on a local directory with few ...
0
votes
1answer
308 views
how to I create a media query for mobile site stylesheet?
I have previously been told to use something along the lines of:
<link rel="stylesheet" media="only screen and (max-width: 480px)" href="mobile.css">
I'd like to use a separate stylesheet AND ...
0
votes
3answers
170 views
where can i find internal structure of HFS and HFS+ in MacOS?
i have a lecture about MacOS file structure. i searched very much in the internet about it but i think MacOS internal structures are secret!!
i want informaions about how the data save on hard, in ...
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 ...
1
vote
3answers
419 views
CakePHP controllers and models in subdirectory
hello i was wondering how can i put my components and models in sub sub directories, lets say i have a web application that have 3 different areas (admins, users, developers) each one of them performs ...
-3
votes
1answer
429 views
errors keep cropping up implementing a basic phpthumb script…Permission denied on line 1070 of GdThumb.in.php
I wanted a script that automatically generates thumbnails when from a folder full of larger images. I've ran into some problems implementing it.
I was getting some errors early on because I hadn't ...
1
vote
0answers
166 views
Mapping a real/proposed folder and file structure to xml and eventually database
For this question the technology set is C# 4.0, and SQL Server 2008. This feature will be a part of a Visual Studio Extension.
We need to implement a strategy which will allow our users to define how ...
0
votes
3answers
122 views
C++ Header and Source Directories
I have the following files:
listDriverTest.cpp
src/List.cpp
headers/List.h
The include in List.cpp is
#include "../headers/List.h"
The include in listDriverTest.cpp is
#include "headers/List.h"
...
2
votes
2answers
306 views
Quickest way to write to file in java
I'm writing an application which compares directory structure. First I wrote an application which writes gets info about files - one line about each file or directory.
Here is my solution which is ...
4
votes
1answer
1k views
Setting scala source directory in SBT
I'm having quite a few troubles pointing at a custom directory for scala source-files in simple-build-tool (sbt). In essence I would like sbt to compile scala-files from a given directory instead of ...
2
votes
4answers
480 views
PHP directory structure confusion
I am attempting to create a website utilizing PHP as the driving power behind the gears. The idea behind the site (generally) requires that each user be presented with the option of creating their own ...
1
vote
2answers
102 views
What are the different ways to use directories in Windows?
I am getting directories from users and storing in databases. I really need validation whether they are correct. Right now I have the list of directories which can be used in a valid manner.
Only ...
0
votes
1answer
256 views
Is there an efficient way to check for subdirectories and load assets via relative path in Android asset folder?
Here's my code, albeit very rough coding:
public void loadStack(AssetManager manager, String path) {
String[] list;
String thePath;
try {
list = ...
1
vote
2answers
521 views
rails app folder directory structure
Here is a app contorller directory from Rails project
, doing a self study for rails, but from what I understand if I create a directory in the app folder then I have to do the complete the routes ...
2
votes
2answers
3k views
Create sub folders in the controller without Areas
I am developing a MVC 3 Web app and I want to create something like this:
/Controller
/Blog
BogController.cs
ViewsController.cs
ArticlesController.cs
/Customers
...
2
votes
4answers
711 views
codeigniter and adding stylesheets
I add a stylesheet to codeigniter:
<head>
<meta charset="utf-8">
<title>Site Administrator</title>
<link rel="stylesheet" href="../../css/administrator.css" ...
4
votes
2answers
476 views
Python TDD directory structure
Is there a particular directory structure used for TDD in Python?
Tutorials talk about the content of the tests, but not where to place them
From poking around Python Koans, suspect its something ...
0
votes
2answers
219 views
How can I find all unique file extensions fin a folder hierarchy in java
What's the most effective way of walking a folder hierarchy and obtaining a list of unqiue extensions?
This is very similar to this question, except that I'd like to do it from within Java.
There's ...
1
vote
2answers
364 views
Off the shelf web-application scaffolding/directory-structure generators (Java/Java EE)?
I was wondering if there is an off the shelf tool to help create a 'web application' directory structure with a basic application up and running? The source code would already be pre-written I'm ...
0
votes
1answer
123 views
PHP - Relative Paths! Easy for experienced developers, I should think
Okay, Long story short, I have this code:
The story is; I have a website where I sell digital downloads, and have been trying to set up PayPal express checkout for some time. I am finally getting it ...
1
vote
1answer
97 views
Can opendir(pathname) change the value of the input pathname?
I've received some curious results while using opendir():
int dtw(char *path) {
struct stat statbuf;
...
else if (S_ISDIR(statbuf.st_mode)) {
printf("Path is: %s\n", path);
...
4
votes
2answers
2k views
List directory tree structure using Python
I know that we can use os.walk() to list all sub-directories or all files in a directory. However, I would like to list the full directory tree content:
Subdirectory 1:
file11
file12
...
0
votes
0answers
172 views
cvs2svn option to keep exact directory-structure?
cvs2svn tool-
Is there any way to keep the directory-structure the exact same as in the CVS repo with the new SVN repo either with dumpfile or creating new SVN repo using cvs2svn?
I would like to ...
0
votes
2answers
1k views
PHP - The system cannot find the path specified. (but it finds it from another file)
My main app is at:
'.app/index.php'
What I do from there is parse a directory
foreach (new DirectoryIterator('./app/uploads/images/') as $fileInfo) {
if($fileInfo->isDot()) continue;
...
0
votes
2answers
54 views
Best way for checking new files which need to be processed
This is more a general question than really a language-specific one. I have to implement a program, which automatically processes csv files (read the file, write to database, move file). This isn't ...
1
vote
3answers
299 views
Java application directory structure
I'm new to Java (though a proficient Ruby programmer), and I'm looking to write a non-trivial Java application (with Swing).
What I've been unable to work out is how I should lay out my files, and ...
0
votes
1answer
111 views
Distributed version control repository structure with public / private parts
I read tons of docs and forum on the subject, need some help to clarify things now.
Here's my current SVN repo structure:
trunk/
Build/
Projects_VS2010/
Solution.sln
Engine/
...
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 ...
7
votes
3answers
2k views
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 hierarchical directory structrure.
Research
Before asking, I went ...
0
votes
2answers
79 views
Just 3 images per user, do I need to go to the trouble of creating a clever directory structure?
I've read several questions about storing images in a database as opposed to folders on the server, and I've decided to go with folders, but I'm wondering how clever I need to be. I've found a lot of ...
1
vote
3answers
97 views
How do I structure directories for a repo that holds a rails app and other code separate from the website?
If I'm creating a rails app and will also be writing other code for the project (think tools and background processes that will be run separately from the website), how should I structure the ...
0
votes
1answer
173 views
Modify project structure on subversion to use maven
I have a project created in Eclipse that has roughly this structure:
src
conf
test
WebContent
WEB-INF
When integrating with maven the structure should be more like this:
src
main
java
...
2
votes
5answers
786 views
Any Best Practices for Project Structure in ASP.NET? [closed]
I'm working on a web application that is most likely going to end up with a large number of .aspx and .master files. The size is more a matter of scope than a design issue, so this is unavoidable. Are ...
0
votes
1answer
703 views
How to disable Nginx index directory to only allow MaxCDN / NetDNA CDN?
I have a very large CDN purge server. It is structured like so
site.com/
site.com/assets/
site.com/assets/products/3424/imgs/large.jpg
site.com/assets/products/3424/imgs/med.jpg
...
1
vote
2answers
179 views
Django : Which approach is better [ virtualenv + pip ] vs [manually carrying packages in svn]?
I have a django project that uses a lot of 3rd party apps, so wanted to decide out of the two approaches to manage my situation :
I can use [ virtualenv + pip ] along with pip freeze as requirements ...
2
votes
2answers
86 views
Sub-domain tangle (knotsmith required)
I seem to have painted myself into a corner with my plans for a series of website sub-domains. I wonder if my plans can be rescued or have I truly shot myself in the foot and would need to totally ...
0
votes
4answers
2k views
XAMPP Local installation File Path problems
I like to work on websites locally before uploading to my host. I use PHP/MYSQL servers in an XAMPP install.
I have multiple directories in XAMPP htdocs directory (one for each project). Each project ...
0
votes
1answer
697 views
VS2010 Additional Include Directories failing to work
I've recently begun a fairly small 2D project using SFML and TinyXML and have had these working fine until recently. I've organised my folder structures in a personal yet mobile state so that I can ...
2
votes
3answers
368 views
Python - how do delete content in a complicated folder without changing its structure?
I have a folder with sub-folders, each can contain more sub-folders and so on. I want to delete all the files in all of them, but keeping the directory structure the same. Is there a built-in command ...
4
votes
3answers
1k views
Unix standard directory to put custom executables or scripts? [closed]
If I have a custom shell script or programs, that I created myself or downloaded from the web, and I want to be able to execute this from the CLI, is there the standard location to put this in ...
0
votes
0answers
228 views
Directory structure on the web server
I've been given a domain http://www.public.xxx.xxx/~user/ and a web-based GUI to upload files to my website. I've a few directories created which I would like to password-protect. I'm having ...
5
votes
2answers
941 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 ...
1
vote
4answers
81 views
How to eliminate lengthy relative include paths
Is there a favored method for specifying the root folder of your website/application without having to resort to code like this:
require '../../../../config/settings.php';
I've used various methods ...
3
votes
2answers
142 views
In C++, why are cyclical directory dependencies bad?
I'm asking this about a C++ project developed on Linux. Consider this:
I have two peer directories, dir1 and dir2. dir1 contains classA.h and classB.h. dir2 contains classC.h and classD.h. ...
