The C library function or Perl function for reading from an open directory.

learn more… | top users | synonyms

1
vote
1answer
35 views

PHP lstat command doesn't distinguish shortcuts in windows

In windows, I open a dir, read the files, and for each file, run stat to determine the size, etc. The problem is that when I run stat on a folder SHORTCUT, it comes back as a FOLDER, and I can't see ...
-2
votes
0answers
25 views

PHP - Files prepended with ss_ are duplicated

My problem is my php script is mysteriously duplicating files (images). It's a simple script to read a directory of jpg images and output html. All image files are in one directory. Some filenames are ...
0
votes
3answers
91 views

Perl - A way to get only the first (.txt) filename from another directory without loading them all?

I have a directory that holds ~5000 2,400 sized .txt files. I just want one filename from that directory; order does not matter. The file will be processed and deleted. This is not the scripts ...
0
votes
2answers
45 views

Filename reading on PHP

Im trying to read filenames from a directory using the code and adding a filter to readonly files with the current year and month in the filename for example Julius ...
1
vote
1answer
33 views

C - listing files contained in folder and all subfolders

I have a function that reads all files contained in a single input directory. I wanted to make that function read not only files in "main" directory, but also ones contained in all subdirectories. ...
0
votes
0answers
11 views

Seg Fault before entering main - readdir_r

I'm trying to read through all files that end in .txt in a directory whose name is passed via the command line. However, I'm getting a seg fault before I even enter main. Here is the precise ...
0
votes
1answer
82 views

PHP readdir, glob and exec('ls') return in an empty array for some directories under Apache

I have developed the following PHP code in order to read a specific directory called /dados/capture: tst2.php <html> <body> <?php echo "whoami: " . ...
1
vote
0answers
28 views

readdir() not give error after removing USB from system and return correct dirent

I am using linux system. I used opendir() & then readdir() to read dir present in USB. If in between reading of Dir by readdir() from usb, I remove the USB from system. But still i am getting ...
0
votes
1answer
56 views

Order of C function readdir() results [duplicate]

I´d like to know what is the order applied to the results of the readdir C function (in dirent.h). I´ve read the help page but this is not explained in detail. Thanks.
-6
votes
1answer
90 views

Is it possible to modify this code to sort files by date? [closed]

I tried hard, and no matter how hard i try i cant seem to do it, if you can do it for me i'll be forever grateful. <?php require_once("inc/config.php"); require_once("inc/header.php"); echo ' ...
0
votes
0answers
28 views

Show images from dir based on filename in php

I have a directory that contain pictures of a bunch of people. Every image is named with the persons real name so when my code run, it will automatic show the image and the persons name. My problem ...
1
vote
2answers
151 views

how to deal with special characters in nodejs fs readdir function

I'm reading a directory in nodejs using the fs.readdir() function. You feed it a string containing a path and it returns an array containing all the files inside that directory path in string format. ...
0
votes
2answers
84 views

readdir looping more times than number of files present in the directory [duplicate]

My goal is to count the number of files in a directory. After searching around, I found a piece of code which iterates over each file in a directory. But the issue is that it's looping extra times, 2 ...
0
votes
2answers
68 views

readdir(): re-reading certain files

I got a function which task is to rename all files in a folder however, it re-rename certain files: http://i.imgur.com/JjN8Qb2.png, the same kind of "error" keeps occurring for every tenth number ...
1
vote
2answers
79 views

embedded linux: readdir() sometimes failing with EFAULT

I've had some readdir() issues occur in an embedded app, so I added this self-contained test at a convenient place in the app code: FILE *f; DIR *d; f = fopen ("/mnt/mydir/myfile", "r"); printf ...
2
votes
1answer
41 views

Return file directories in an array

I`m trying to create a function that reads a directory and returns all file's working directories in an array, but it is not working. I don`t know why the code doesn`t work, can you help me? ...
0
votes
1answer
66 views

Easy way to sort getting images from a gallery using php?

Hello there good people of stackoverflow. I have this code that basically get any photo i place in a folder called "pictures" and displays them on my page. Which is all good, and it works, with ...
0
votes
0answers
68 views

insert multiple xml files contents in mysql using xpath

I want to insert multiple nodes values from multiple xml files into mysql using xpath method, code is as follows: ?php $path="fs/"; $con = mysql_connect("localhost","sufi","1234"); ...
0
votes
0answers
62 views

xpath query to multiple text files

I want to insert specific xml node values from multiple xml files into mysql table using xpath query method. FOr this I wrote <?php $path="fs/"; $con = ...
-2
votes
2answers
93 views

How do I use scandir (or another method) to sort the directory results alphabetically?

Not skilled with PHP at all. I used old code from another site (that I did not write) to create a CMS for a client. Problem is, the directory results here are not returned alphabetically. I have read ...
0
votes
2answers
178 views

readdir()->d_name giving weird values

I am trying to get the name of the parent directory by using this code: dirp=opendir(cur_spot); printf("parent name: %s\n", readdir(dirp)->d_name); closedir(dirp); cur_spot holds '..'. i do ...
0
votes
4answers
98 views

calling opendir and readdir is changing my char array

This is the code i have so far, it finds where the root is fine, but when i add the line: printf(" name: %s\n", readdir(opendir(cur_spot))->d_name); it changes cur_spot and adds weird ...
0
votes
3answers
116 views

get image files from directory on server for further processing

I have folders on the server that contain image files. I'm trying to get those files and then upload them further, but I think I'm using the wrong function. My code: $dir = ...
0
votes
0answers
161 views

exclude directories when using readdir

i'm using readdir to echo file-choices from a folder and putting them in a drop down list. how can i exclude the directories within this folder, as i only want to display the actual files in the drop ...
0
votes
1answer
119 views

Howto send data through socket: one buffer, scatter/gatter or readdir like?

I'm writing an FUSE overlay fs (notifyfs), which can be an database clients can get data from through queries. My intention is to make it a cache/overlayfs/database clients can get data from when ...
1
vote
2answers
255 views

readdir() showing non visible files

I am using readdir() in Ubuntu to display files and directories. The weird thing is readdir() displays some files starting with "dot", and some that end at ~ . But these files are not in my specified ...
1
vote
3answers
1k views

Members of Dirent structure

I have started working with dirent.h library and I came across a very useful member of "struct dirent" structer which struct dirent *p->d_name in my book. But unfortunatly it doesn't states any other ...
0
votes
2answers
158 views

Listing files in Directory in Ubuntu

I am trying to list files in the parent directory of the current directory, but when I try to execute this program from terminal I get Segmentation Error.. What am I doing wrong? Here is the code: ...
1
vote
0answers
92 views

How to edit readdir function in fs/readdir.c to filter out specific files when ls is called?

Can someone tell me in which part of the following code the information about all the files that are present in a directory is present? I'm trying to filter out few files that are to be hidden when ls ...
2
votes
3answers
88 views

Get each file within a directory in c on Windows

I am currently working on a C project where I need to scan a directory and get the file name for each file within that directory. The code needs to run on both Windows and Linux. I have the linux ...
1
vote
1answer
219 views

PHP Crawler - Why is readdir while loop quitting when it reaches empty folder?

I have the following function as part of a larger program that crawls the contents of a provided path, and indexes any .htm or .html pages that it finds in the parent folder or any subfolders. My ...
1
vote
1answer
99 views

How to get the file and directory list in a specific directory [duplicate]

Possible Duplicate: PHP list of specific files in a directory I want to list all the directories and files that are there in my directory. How i can do this? Below is my code ...
0
votes
0answers
60 views

Getting file names formatted in php

my php code should compare two arrays and then print out the elements of both well formatted. My filenames are like: AndrasAdorjan.jpg ConcertinoMuenchen.jpg My sql-field "Names"-Content is: Andras ...
1
vote
1answer
134 views

What guarantees does pathconf(…, _PC_NAME_MAX) provide?

Context: The readdir_r function is used to read the next entry from a DIR* (there's also readdir, but that's not thread-safe). readdir_r takes a pointer to a user-allocated buffer to hold the output ...
0
votes
3answers
73 views

List all images in a directory not listing contents

I am using the following to list all of the jpg images in a directory, for some reason its not working though, I think some of my 's and .s may be in the wrong place, I think I have confused myself a ...
0
votes
5answers
185 views

Ordering output when using readdir()

I'm fairly new to PHP and have been using PHP's readdir() to look into a folder full of images and render them out dynamically based on how many images there are in that folder. Everything works ...
0
votes
1answer
256 views

Scandir Array display without file extensions

I'm using the following to create a list of my files in the 'html/' and link path. When I view the array it shows, for example, my_file_name.php How do I make it so the array only shows the filename ...
0
votes
1answer
28 views

how to find a file in a directory based on a known id in php?

i have some images in a folder on a server: /9_123456.jpg /10_123457.jpg /21_123458.jpg /14_123459.jpg ... also i have a database that holds those file names. id file 9 9_123456.jpg 10 ...
0
votes
2answers
347 views

Reading directories using readdir_r

I've been checking and fighting with this procedure without success for quite a while, hope you can help me out. The idea is to read the directory stored in c_Localpath and copy the read dirs into ...
0
votes
0answers
147 views

alternatives to opendir and readdir?

What other options do I have to list and change into directories besides opendir and readdir (I am talking about the the C library calls, though I presume that the same calls in other applications ...
0
votes
0answers
81 views

opendir and readdir encoding strings behind my back?

(You can skip the details to the last couple of lines if you're able to answer the question :) ) I'm on an Ubuntu 12.04. I'm trying to resolve an old issue that I've posted about in the past (if ...
1
vote
1answer
189 views

No such file or directory (opendir) PHP

I have a problem with my opendir function. if ($handle = opendir($dir)) { echo "Directory handle: $handle\n"; echo "Entries:\n"; while (false !== ($entry = readdir($handle))) { ...
0
votes
2answers
963 views

C - open and read directory, then determine file type

Alright, so I am having some issues. Here is my code (opendir() called before this): while( (dp = readdir(dfd)) != NULL ) { if( strcmp(dp->d_name, ".") == 0 || strcmp(dp->d_name, ...
0
votes
1answer
269 views

For readdir_r, may entry and result have the same value?

Can I use readdir_r like this? I don't find anything about it in the spec, but maybe I'm just blind... readdir_r(dir, entry, &entry);
1
vote
1answer
117 views

selecting files with readdir

<?php // open the current directory $dhandle = opendir('.'); // define an array to hold the files $files = array(); if ($dhandle) { // loop through all of the files while (false !== ($fname ...
0
votes
2answers
243 views

creating photo gallery without database

I am creating photo gallery using readdir , in that directory there are non image file also . There are several thousands files in the directory , i am really struggling to filter the extension . Any ...
0
votes
2answers
157 views

will the php readdir function work with 1 million files in a single directory?

I am writing a script that needs to scan through a large amount of files (potentially up to 1 million) in a single directory (ext4). I am planning on using the PHP readdir function to create the list. ...
0
votes
1answer
150 views

how to get all image using php readdir method?

am using readdir to get all the image from the folder like function get_user_image($valid_user){ $rootdir = "../../../user/".$valid_user; $dir = opendir("../../../user/".$valid_user); ...
1
vote
1answer
94 views

Trying to echo contents of multiple text files while sorting the output by the file name - PHP

I'm not a developer, but I'm the default developer at work now. : ) Over the last few weeks I've found a lot of my answers here and at other sites, but this latest problem has me confused beyond ...
1
vote
2answers
177 views

PHP Get dimensions of images in dir

I have a huge ammount of photos that need sorting through. I need to know the dimensions of each photo in order to know or it needs re-sizing. As a programmer I'm convinced there must be a quicker way ...

1 2 3