Tagged Questions
The dirent.h tag has no wiki summary.
5
votes
1answer
439 views
Cross platform way of testing whether a file is a directory
Currently I have some code like (condensed and removed a bunch of error checking):
dp = readdir(dir);
if (dp->d_type == DT_DIR) {
}
This works swimmingly on my Linux machine. However on another ...
3
votes
3answers
94 views
Using C, how can I know when a file is created?
I'm making a program in C for linux that scans a directory every x seconds during a time period for modifications, but I'm having trouble finding out when a file or directory is created. Here are a ...
2
votes
4answers
2k views
How do i check if a file is a regular file in C++?
How do i check in C++ if a file is a regular file (and is not a directory, a pipe, etc.)? I need a function isFile().
DIR *dp;
struct dirent *dirp;
while ((dirp = readdir(dp)) != NULL) {
if ( ...
1
vote
2answers
615 views
c++, List all files, dirent.h on Windows
in C++, what would be the best way to list all files of a directory on Windows?
On Linux or on Windows using gcc (e.g. MingW) this is easy possible with dirent.h, but what's the best way to do it on ...
1
vote
2answers
477 views
Accessing Directories in C
The program is to open a directory and to display the name of the files...
i.e if there is a file..it should say FILE....else DIRECTORY..
but the program displays all the files as directory..
Could ...
1
vote
1answer
74 views
Do you know a Haskell package for dirent.h on Windows?
Do you know a Haskell package for dirent.h on Windows?
There is similar set of functions in system.posix but those functions are not implemented on Windows.
I wonder if there is similar somewhere ...
0
votes
3answers
127 views
why does the C readdir man page say to not call free on the static allocated result struct
$ uname -a
Linux crowsnest 2.6.32-28-generic #55-Ubuntu SMP Mon Jan 10 23:42:43 UTC 2011 x86_64 GNU/Linux
$ man readdir:
DESCRIPTION
The readdir() function returns a pointer to a dirent ...
0
votes
1answer
135 views
Getting size of files in a directory
I trying to get size of files in a directory by using dirent.h headers. However
stat(ent->d_name, &statbuf)
returns always -1 and I can't get the size properly. What could be the reason?
0
votes
2answers
244 views
How can I get a dirent struct from a string path?
If given a directory path in the form of a std::string, how can I get a dirent struct pointing to that directory?
I could start by getting a DIR* to the needed directory using opendir(). Then I could ...
0
votes
1answer
353 views
How can I generate a directory tree from a root folder and all it's sub folders?
okay, so I'm trying to get a directory of folders and sub folders, but it just goes into a infinite loop. What is a better way to create a directory of folders and sub-folders? Cause I really have no ...
0
votes
2answers
463 views
How do I check if a directory is a file or folder?
Okay, so I'm using mingW, and the direct struct has no variables named d_type or stat, d_stat, or dd_stat. I need to know how I can use my direct struct to figure out if what I have is a file or ...
0
votes
0answers
128 views
How can DIR* get EBADF error?
I have some code that I have inherited which is part of a class for iterating, accessing the directory content and uses boost::filesystem::path. The code reads in part:
struct ...
0
votes
2answers
609 views
How to use dirent.h correctly
I am new to C++ and I am experimenting with the dirent.h header to manipulate directory entries. The following little app compiles but pukes after you supple a directory name. Can someone give me a ...
0
votes
3answers
531 views
Are there ways of doing opendir(), readdir() type of calls through SSH/SFTP?
I have a bit of code that reads a directory for files to process. I currently use the dirent.h,opendir(),readdir() methods of doing this. I have been told that I need to do the same thing, only now it ...