Tagged Questions
The readdir tag has no wiki summary.
32
votes
9answers
2k views
What reasons are there to prefer glob over readdir (or vice-versa) in Perl?
This question is a spin-off from this one. Some history: when I first learned Perl, I pretty much always used glob rather than opendir + readdir because I found it easier. Then later various posts and ...
13
votes
2answers
127 views
php recursive folder readdir vs find performance
i came across few articles about performance and readdir
here is the php script:
function getDirectory( $path = '.', $level = 0 ) {
$ignore = array( 'cgi-bin', '.', '..' );
$dh = @opendir( ...
10
votes
5answers
142 views
Does readdir() guarantee an order?
I'm getting a list of files on a linux-like system using opendir/readdir. It appears that the directory entries are returned in alphabetical order of file name. However, I don't see anything in the ...
6
votes
3answers
3k views
node.js fs.readdir recursive directory search
Any ideas on an async directory search using fs.readdir? I realise that we could introduce recursion and call the read directory function with the next directory to read, but am a little worried about ...
4
votes
3answers
89 views
Perl: Using Loop or Map/Grep?
I'm writing a program to step through a directory tree (Yes, I know about File::Find, but I'm writing a replacement).
In my program, I'm doing a readdir on a whole directory and placing it in a ...
4
votes
5answers
419 views
How can I list all files in a directory sorted alphabetically using PHP?
I'm using the following PHP code to list all files and folders under the current directory:
<?php
$dirname = ".";
$dir = opendir($dirname);
?>
<?php
while(false != ($file = readdir($dir)))
...
4
votes
7answers
1k views
PHP readdir with european characters
I get images files which have Czech characters in the filename (eg, ěščřžýáíé) and I want to rename them without the accents so that they are more compatible for the web.
I thought I could use a ...
3
votes
6answers
3k views
How can I speed up Perl's readdir for a directory with 250,000 files?
I am using Perl readdir to get file listing, however, the directory contains more than 250,000 files and this results long time (longer than 4 minutes) to perform readdir and uses over 80MB of RAM. ...
3
votes
3answers
2k views
How can I read the files in a directory in sorted order?
When I read a directory in Perl with opendir, readdir, and closedir, the readdir function doesn't seem to read the files in any specific order (that I can tell).
I am reading a directory that has ...
2
votes
1answer
26 views
How do I add all the files in the current directory to an array from a thread in c?
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
pthread_mutex_t mut1 = PTHREAD_MUTEX_INITIALIZER,
mut2 = PTHREAD_MUTEX_INITIALIZER,
...
2
votes
1answer
103 views
Scanning a directory and modify file in c
I'm trying to create a function that scans a folder on my Windows PC and every time it does, a file called "Filter.txt" is appended with the string "Test Script".
Now the problems are 2, the first is ...
2
votes
4answers
748 views
How to sort files in some directory by the names on Linux
I use opendir() and readdir() to display the file names in a directory. But they are disordered. How can I sort them? The language is C.
2
votes
2answers
743 views
How can I get node.js to return data once all operations are complete
I am just learning server-side JavaScript so please bear with any glaring mistakes I've made.
I am trying to write a file parser that operates on HTML files in a directory and returns a JSON string ...
2
votes
3answers
720 views
PHP: readdir to scandir?
i wonder how i can transform exactly the following piece of code to scandir instead of readdir?
$path = 'files';
//shuffle files
$count = 0;
if ($handle = opendir($path)) {
$retval = array();
...
2
votes
3answers
334 views
is_dir doesn't recognize directories. Why?
I have this function:
if (is_dir($dir)) {
//are we able to open it?
if ($dh = opendir($dir)) {
//Let's cycle
while (($subdir = readdir($dh)) !== false) {
...
2
votes
3answers
3k views
Efficiently Traverse Directory Tree with opendir(), readdir() and closedir()
The C routines opendir(), readdir() and closedir() provide a way for me to traverse a directory structure. However, each dirent structure returned by readdir() does not seem to provide a useful way ...
2
votes
2answers
6k views
PHP readdir and sort
I'm making a little gallery. I want to read the file names off a directory and print the file names below after I've stripped some leading numerals and file extensions.
I have two versions of the ...
2
votes
1answer
415 views
How is “0” result from readdir() not false in a while condition?
See also: Where in the documentation does it say that while tests readdir for definedness?. (Not a duplicate; just closely related.)
Many people treat the loop below as idiomatic:
while ...
1
vote
1answer
65 views
Repeat a PHP readdir code
Maybe it's a dumb question, but I wasn't able to solve it myself.
I have the following code:
<?php
$path = "galeria01";
$dir_handle = @opendir($path) or die("Not found: $path");
...
1
vote
2answers
63 views
php sftp seg fault
What i need to do if next code gives me seg fault ?
$handle = opendir("ssh2.sftp://$sftp".'/usr/bin/');
$file = readdir($handle);
closedir($handle);
where $sftp is
...
1
vote
1answer
41 views
Glob and counter in php
I have this script which arranges my folders in some tags and takes only 4 items.. which is great! But I need it to take the items by the alphabet
$counter = 0;
$directory = opendir("albums/");
...
1
vote
1answer
83 views
How do I avoid this race condition with readdir/inotify?
Suppose I want to invoke some command on all files in a directory and set a watch to invoke that command on all files that get created in that directory. If I do:
while( ( sdi = readdir( d )) != ...
1
vote
0answers
47 views
file order variation in ext3 filesystem
I have a program whose output depends on how file order are returned by readdir. Is there any way to simulate different file return order over ext3
1
vote
1answer
44 views
php finding the names of the folders and then the files in there?
I am trying to use php to look in a folder and there will be five folders within that ....i want to display the name as the folder as the ul and the names of that folders files as li's.....
here is ...
1
vote
3answers
159 views
Readdir/closedir - Valgrind shows “invalid read”
Posting snippets of my code here. I am trying to get a footing around debugging.
struct dirent *s_dirent;
char path[300];
....
bzero(path,300);
...
fd_dir = opendir(path);
while((s_dirent = ...
1
vote
0answers
136 views
PHP correct while-loop: (false !== ($file = readdir($handle))) is not showing recent files changes with MAMP on OSX
By now I'm convinced that I must be one of the few who experienced something like this.
The problem is that my PHP is not listing updates (or recent file changes) in a certain directory.
Say I have 3 ...
1
vote
3answers
183 views
Problem with directories in C
I'm making a program for Linux in C that recieves a directory as an argument, then for each file in that directory and each of it's sub-directories, calls a program called monfile. Here's the code:
...
1
vote
2answers
204 views
Why doesn't Perl threading work when I call readdir beforehand?
Whenever I call readdir before I create a thread, I get an error that looks like this:
perl(2820,0x7fff70c33ca0) malloc: *** error for object 0x10082e600: pointer
being freed was not allocated
*** ...
1
vote
3answers
407 views
Perl program help on opendir and readdir
So I have a program that I want to clean some text files. The program asks for the user to enter the full pathway of a directory containing these text files. From there I want to read the files in ...
1
vote
6answers
271 views
Sorting a directory in perl, taking numbers into account
I think I need some sort of Schwartzian Transform to get this working, but I'm having trouble figuring it out, as perl isn't my strongest language.
I have a directory with contents as such:
...
1
vote
1answer
214 views
Linux ext3 readdir and concurrent updates
we are receiving about 10000 messages per hour. We store them as individual files in hourly directories on an ext3 filesystem. The file name includes a sequence number. We use rsync to mirror these ...
1
vote
2answers
904 views
List regular files only (without directory) problem
Do you know why certain files are not listed by this program, even if they are "regular"?:
#include <stdio.h>
#include <sys/types.h>
#include <sys/param.h>
#include ...
1
vote
2answers
875 views
Why can't I open files returned by Perl's readdir?
Well, I know this is another newbie question but I'm very frustrated and I'm looking to be enlightened again. With the guidance of you guys, I've already learnt how to use the glob function to read ...
1
vote
6answers
1k views
Filter filenames by pattern
I need to search for files in a directory that begin with a particular pattern, say "abc". I also need to eliminate all the files in the result that end with ".xh". I am not sure how to go about doing ...
1
vote
4answers
10k views
Microsoft Visual Studio: opendir() and readdir(), how?
I've used this kind of code in my Dev-cpp before:
if((dh = opendir(folder)) !== false){
while((file = readdir(dh)) !== false){
// do my stuff
}
closedir(dh);
}
But now i am using ...
1
vote
5answers
2k views
How do I read multiple directories and read the contents of subdirectories in Perl?
I have a folder and inside that I have many subfolders. In those subfolders I have many .html files to be read. I have written the following code to do that. It opens the parent folder and also the ...
0
votes
1answer
26 views
PHP - Creating 'DYNAMIC' Directories For HTML5 <AUDIO>
So... I'm a mega noob when it comes to PHP, trying my best to learn but ITS NOT GOOD ENOUGH.
Anyways, what I am attempting to do is set up 2 different 'dynamic' directories within a PHP echo ...
0
votes
5answers
46 views
array_item[] = $file what does this do?
I have been following a tutorial on readdir(), is_dir() etc involved in setting up a small image gallery based on folders and files on my FTP. I was wondering what the $directorys[] = $file; part does ...
0
votes
2answers
90 views
C: Checking the type of a file. Using lstat() and macros doesn't work
I use opendir() to open a directory and then readdir() and lstat() to get the stats of each file in that directory. Following this manpage I wrote the code under which doesn't work as thought. It does ...
0
votes
1answer
110 views
PHP Recursively File Folder Scan Sorted by Modification Date
I'm using this script to see all subfolders and files of subfolders
function readfolder($dir)
{
global $tfile,$tdir;$i=0;$j=0;$myfiles;
$myfiles[][] = array();
if ...
0
votes
0answers
49 views
Help with identifying particular file in PHP using scandir and readdir
I have a folder that looks like this:
RootFolder
Comp1
Comp1_01042011.html
Comp1_03062011.html
Comp2
Comp1_01042011.html
Comp1_03062011.html
Each of the HTML files are in the ...
0
votes
1answer
93 views
readdir(3) strange behavior : finding non existing files in /dev/
I'm using opendir / readdir / closedir to reproduce a program similar to ls, it went pretty well until I tried to ls "/dev/" when it comes to "/dev/fd/" with the recursive options, it find more files ...
0
votes
1answer
92 views
A readdir() issue
My intention is to read every directory and file rooted at a directory given as input in a depth-first manner and towards it I had written a portion(very very initial) of code as shown below.
int ...
0
votes
2answers
681 views
How do I exclude hidden folders and files from readdir?
Is it possible to exclude hidden files and folders from the readdir() function? I have a directory where there are many folders and some hidden folders. I want to read all folders except the hidden ...
0
votes
1answer
406 views
how do I exclude non-folders files from this readdir function?
The following lists the folders, the index.php and the favicon.ico in the directory. I want to see only folders.
Any ideas?
Thanks.
<?php
// opens this directory
$myDirectory = ...
0
votes
2answers
221 views
PHP / read txt files (or anything)
I've been searching for a while now, but php-noob as I am, can't get it to work.
What I'm trying to accomplish is a way to make directories in your root, with in each of them images + a txt file. So ...
0
votes
2answers
831 views
read dir error (readdir(): supplied argument is not a valid Directory resource )
tryin to read dir content with readdir($myDirectory), but i getting error:
readdir(): supplied argument is not a valid Directory resource
i checked with is_dir($myDirectory) is it directory or ...
0
votes
2answers
566 views
Can you list files in a directory with JavaScript but without ActiveX?
I wrote a script in php that allows me to get a list of files in a directory as an array, parse each one for a particular string, and then it displays all of the files that contain the search string.
...
0
votes
2answers
377 views
PHP (images folder) image Listing in Alphabetical Order?
I'm having problems with a PHP script trying to list images alphabetically. I need this urgently and I have not much knowledge of PHP. I was trying to use scandir() but I'm not succeeding. Thanks for ...
0
votes
1answer
805 views
How do i get readdir ignore directories in C/C++?
I am reading the content of the current library with readdir, but I would like to treat only files and not directories. How do I know that I am pointing to a directory and not to a file?
Thank you