0
votes
0answers
18 views

Which approach is better when handling hundreds of directories with thousands of files in each of them on Linux?

I have webserver which stores thousands of photos. Right now I have /photo directory in which I have one hundred directories named like /photos/10, /photos/11, /photos/12, .... /photos/99 Right now I ...
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 ...
0
votes
3answers
168 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 ...
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
1answer
96 views

Python: How do I call a script in a parent directory's subdirectory?

I'm trying to open a Python script from the Python command line. There's a bug in Python that makes adding Python to my environmental variable's path ineffective. So, I have to run Python command ...
1
vote
1answer
342 views

What is correct web-app file structure? And why? [closed]

What is a typical file structure for a web-app? You've got your brouchure websites: [+] root [+] images [+] css [+] javascripts [+] pages - index.html - biographies.html - ...
1
vote
2answers
459 views

php include_paths in htaccess

I have a few things in various different files that get called from different places. I've been trying to use a $ROOT variable, but because I'm going from a few different files (index.php, view.php, ...
0
votes
2answers
661 views

Get a list of directory names and output to file

I am looking for the best method for a windows computer to grab a directory listing, output the result to a formatted text file I can then use to make a SQL update. Directories are formated: ...
0
votes
3answers
292 views

Oddity with System.IO.Directory.GetDirectories

Just something I noticed today when doing directory searches that might trip some people up. I found on my Windows XP machine that System.IO.Directory.GetDirectories("C:\") gave me 17 folders ...
0
votes
3answers
600 views

Directory tree data type?

What would be the return type of the following method? (T) public T GetDirectoryContentsRecursively (string path) { ... } The method will read the contents of a remote directory, and read the ...
4
votes
1answer
2k views

using wild card when listing directories in python

how can I use wild cars like '*' when getting a list of files inside a directory in Python? for example, I want something like: os.listdir('foo/*bar*/*.txt') which would return a list of all the ...
5
votes
5answers
3k views

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 I want to take the basename of a directory given to the program and use it to ...
1
vote
1answer
434 views

Why touching “d_name” makes calls to readdir() fail?

I'm trying to write a little helper for Windows which eventually will accept a file extension as an argument and return the number of files of that kind in the current directory. To do so, I'm ...
0
votes
2answers
911 views

General graph directory structure needs garbage collection?

I can't think of an example where the reference count of a file may not be zero even when it is no longer possible to refer a directory or file. The only example that I could find for a general ...
3
votes
4answers
707 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 ...
2
votes
3answers
565 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: ...