I have a question about how to use fopen() to read/write multiple files of one folder. I have 100 text files in a folder and I want to use a loop to open all the files (one by one) and write something in them. For example something like this:

for(i = 0; i < 100; i++)
{
  f = fopen("files","a");
  fwrite("hello");
  fclose(f);
}

So for example if i have 100 txt files in the folder "C:\Users\Desktop\examples\txts" I want to open all of them and write for example the same word "hello" to all of them.

If I use it like: "C:\Users\Desktop\examples\txts*.txt" (with the star: *) it doesn't work. Any idas?

link|improve this question
feedback

2 Answers

You can use the FindFirstFile/FindNextFile api functions on windows, not sure if there's a built in function to do this in C (it's been 20 years (almost) since I wrote real world code in C)

link|improve this answer
feedback

You could use readdir, as in this example:

http://www.gnu.org/s/hello/manual/libc/Simple-Directory-Lister.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.