473,378 Members | 1,446 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

List files in current directory

Hi there, quick question, how would I retrieve a list of files in ANSI C in
a purely platform independent way?

Any pointers would be great!

thanks
Kristan
Oct 6 '06 #1
7 32789

"Kristan" <kr*******@hotmail.comwrote in message
news:45***********************@ptn-nntp-reader01.plus.net...
Hi there, quick question, how would I retrieve a list of files in ANSI C
in
a purely platform independent way?

Any pointers would be great!
(I'm posting after reading on comp.lang.c. I don't know if it's suited to
the other NG's you posted to and you didn't set followups to the NG you are
reading from. Since, I don't know from which NG you are reading replies,
all NG's you posted to whether appropriate or not get this message.)

"in ANSI C"
- You don't. You could use POSIX C routines.
"in a purely platform independent way"
- You might use a platform specific version of Doug Gwyn's Public Domain
libndir package or create a multiplatform version from the various versions.
for BSD, libndir.tar.Z http://ftp.br.xemacs.org/pub/unix-c/languages/c/
for POSIX, libndir-posix.tar.Z
http://ftp.br.xemacs.org/pub/unix-c/languages/c/
for DOS, (several versions exist, I'm not looking them up unless you
_actually_ need them, i.e., beg)
- You might look at how multi-platform applications which store directory
structures work, like Info-ZIP, PDTar (Public Domain tar), GNU tar, etc...
Infozip http://www.info-zip.org/pub/infozip/
pdtar.tar.Z http://ftp.br.xemacs.org/pub/unix-c/tapes/

Programs like Info-ZIP and PDTar have to create their routines which perform
directory access identically on many platforms. However, those routines may
not be integrated into a single file...
Rod Pemberton
Oct 6 '06 #2
Hi there, well, POSIX sounds promising, as it seems to be supported on Linux
and Windows (2000 upwards), basically I'm using Windows for development and
the Debian Linux server is the platform.

Do you know whether POSIX is available with my Visual Studio 2005 C
compiler? Or would I have to obtain it separately?

thanks
Kristan
"Rod Pemberton" <do*********@bitfoad.cmmwrote in message
news:eg**********@main.corriga.net...
>
"Kristan" <kr*******@hotmail.comwrote in message
news:45***********************@ptn-nntp-reader01.plus.net...
>Hi there, quick question, how would I retrieve a list of files in ANSI C
in
>a purely platform independent way?

Any pointers would be great!
(I'm posting after reading on comp.lang.c. I don't know if it's suited to
the other NG's you posted to and you didn't set followups to the NG you
are
reading from. Since, I don't know from which NG you are reading replies,
all NG's you posted to whether appropriate or not get this message.)

"in ANSI C"
- You don't. You could use POSIX C routines.
"in a purely platform independent way"
- You might use a platform specific version of Doug Gwyn's Public Domain
libndir package or create a multiplatform version from the various
versions.
for BSD, libndir.tar.Z http://ftp.br.xemacs.org/pub/unix-c/languages/c/
for POSIX, libndir-posix.tar.Z
http://ftp.br.xemacs.org/pub/unix-c/languages/c/
for DOS, (several versions exist, I'm not looking them up unless you
_actually_ need them, i.e., beg)
- You might look at how multi-platform applications which store directory
structures work, like Info-ZIP, PDTar (Public Domain tar), GNU tar, etc...
Infozip http://www.info-zip.org/pub/infozip/
pdtar.tar.Z http://ftp.br.xemacs.org/pub/unix-c/tapes/

Programs like Info-ZIP and PDTar have to create their routines which
perform
directory access identically on many platforms. However, those routines
may
not be integrated into a single file...
Rod Pemberton


Oct 6 '06 #3
Kristan wrote:
Hi there, well, POSIX sounds promising, as it seems to be supported on Linux
and Windows (2000 upwards), basically I'm using Windows for development and
the Debian Linux server is the platform.

Do you know whether POSIX is available with my Visual Studio 2005 C
compiler? Or would I have to obtain it separately?
I don't think it's directly supported. There is a POSIX subsystem for
Windows that you can download, but it does not use the Visual Studio C
compiler.

My approach when dealing with platform-specifics is to abstract the
functionality into functions that are conditionally compiled on each system.

Below is a directory lister for Windows, Unix/POSIX and MS-DOS.

#include <stdio.h>

#ifdef _WIN32

/* Compiling for Windows */

#include <windows.h>

int main(void)
{
WIN32_FIND_DATA f;
HANDLE h = FindFirstFile("./*", &f);
if(h != INVALID_HANDLE_VALUE)
{
do
{
puts(f.cFileName);
} while(FindNextFile(h, &f));
}
else
{
fprintf(stderr, "Error opening directory\n");
}
return 0;
}

#else
#ifdef __unix__

/* Compiling for UNIX / POSIX */

#include <sys/types.h>
#include <dirent.h>

int main(void)
{
DIR *dir = opendir(".");
if(dir)
{
struct dirent *ent;
while((ent = readdir(dir)) != NULL)
{
puts(ent->d_name);
}
}
else
{
fprintf(stderr, "Error opening directory\n");
}
return 0;
}

#else
#ifdef __TURBOC__

/* Compiling for MS-DOS */

#include <dir.h>

int main(void)
{
struct ffblk ffblk;
if(findfirst("*.*", &ffblk, 0) == 0)
{
do
{
puts(ffblk.ff_name);
} while(findnext(&ffblk) == 0);
}
else
{
fprintf(stderr, "Error opening directory\n");
}
return 0;
}

#else
#error Unsupported Implementation
#endif
#endif
#endif
Oct 6 '06 #4
>Hi there, quick question, how would I retrieve a list of files in ANSI C in
>a purely platform independent way?
1. Prompt the user for the file names, one at a time.
2. Get the list of file names from argv[].
3. Open a file containing a list of file names and read it, one line at a time.
Oct 6 '06 #5
Kristan wrote:
Hi there, quick question, how would I retrieve a list of files in ANSI C in
a purely platform independent way?

Any pointers would be great!

thanks
Kristan

Windows:
system("dir /b file.lst");
Linux:
system("ls file.lst");

might do it.

--
Joe Wright
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Oct 7 '06 #6
Joe Wright <jo********@comcast.netwrites:
Kristan wrote:
>Hi there, quick question, how would I retrieve a list of files in
ANSI C in a purely platform independent way?
Any pointers would be great!
thanks
Kristan
Windows:
system("dir /b file.lst");
Linux:
system("ls file.lst");

might do it.
Or it might not.

<OT>
In both cases, the command applies only to the current directory,
whatever that happens to be. The Unix command skips any files whose
names start with '.'. The order in which the files are listed may or
may not depend on the current locale. Either command will fail if you
don't have write permission in the current directory. If "file.lst"
already exists, the command will either clobber it or fail; if it
doesn't exist, you've just added a new file that may or may not show
up in the listing.
</OT>

Since you've provided different solutions for Windows and Linux, it's
obviously not "purely platform independent", which is what the OP was
asking for. The fact that you're using the standard function system()
doesn't make the code platform independent; it merely delays any
failure until execution time.

There is no purely platform independent solution.

Both Windows and Linux provide system-specific mechanisms for
retrieving a list of files (the Linux solution should work on any
Unix-like system). These mechanisms are far more flexible, and they
don't depend on creating and reading a temporary file in the very
directory you're trying to examine

This is one of those cases where trying to write portable code is a
waste of time; the non-portable solutions work better, and the
seemingly portable solution isn't portable at all.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Oct 7 '06 #7
"Kristan" <kr*******@hotmail.comwrote in message
news:45***********************@ptn-nntp-reader04.plus.net...
Hi there, well, POSIX sounds promising, as it seems to be supported on
Linux and Windows (2000 upwards), basically I'm using Windows for
development and the Debian Linux server is the platform.

Do you know whether POSIX is available with my Visual Studio 2005 C
compiler? Or would I have to obtain it separately?
For your specific need, look at:
http://www.two-sdg.demon.co.uk/curbr...nt/dirent.html
>
thanks
Kristan
"Rod Pemberton" <do*********@bitfoad.cmmwrote in message
news:eg**********@main.corriga.net...
>>
"Kristan" <kr*******@hotmail.comwrote in message
news:45***********************@ptn-nntp-reader01.plus.net...
>>Hi there, quick question, how would I retrieve a list of files in ANSI C
in
>>a purely platform independent way?

Any pointers would be great!
(I'm posting after reading on comp.lang.c. I don't know if it's suited
to
the other NG's you posted to and you didn't set followups to the NG you
are
reading from. Since, I don't know from which NG you are reading replies,
all NG's you posted to whether appropriate or not get this message.)

"in ANSI C"
- You don't. You could use POSIX C routines.
"in a purely platform independent way"
- You might use a platform specific version of Doug Gwyn's Public Domain
libndir package or create a multiplatform version from the various
versions.
for BSD, libndir.tar.Z http://ftp.br.xemacs.org/pub/unix-c/languages/c/
for POSIX, libndir-posix.tar.Z
http://ftp.br.xemacs.org/pub/unix-c/languages/c/
for DOS, (several versions exist, I'm not looking them up unless you
_actually_ need them, i.e., beg)
- You might look at how multi-platform applications which store directory
structures work, like Info-ZIP, PDTar (Public Domain tar), GNU tar,
etc...
Infozip http://www.info-zip.org/pub/infozip/
pdtar.tar.Z http://ftp.br.xemacs.org/pub/unix-c/tapes/

Programs like Info-ZIP and PDTar have to create their routines which
perform
directory access identically on many platforms. However, those routines
may
not be integrated into a single file...
Rod Pemberton



Oct 10 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Ken | last post by:
I currently have a set of documents in a directory that i need to list in a html table. Is there any way to generate the table with the documents listed instead of having to update the table...
6
by: Gonnasi | last post by:
With >glob.glob("*") or >os.listdir(cwd) I can get a combined file list with directory list, but I just wanna a bare file list, no directory list. How to get it? Tons of thanks in advance!
2
by: mhk | last post by:
Hi , i am writing a c language program in Unix to see the executable files in a directory and it works if the directory is current but if i change to another directory than current directory...
3
by: Nick | last post by:
Is it possible to read a list of files from a specified directory using VB.net We have company intranet and I have created a page that displays photos from different events. I have coded a page...
2
by: Rob_S | last post by:
I have a program which saves time stamped files into time stamped directories. When I want to read these files, I get the current date and check for the existence of the directory using.... ...
3
by: jpabich | last post by:
I want to display a list of filenames that exist in a certain directory. How do I go about loading this list?
10
by: Kristan | last post by:
Hi there, quick question, how would I retrieve a list of files in ANSI C in a purely platform independent way? Any pointers would be great! thanks Kristan
6
by: tgnelson85 | last post by:
Hello, C question here (running on Linux, though there should be no platform specific code). After reading through a few examples, and following one in a book, for linked lists i thought i would...
1
by: Trevor17 | last post by:
Hello All, I am currently in a Perl programming class and our assignment was: Create a filehandle with the open function that uses a pipe to list all the files in your current directory and...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.