Tagged Questions
3
votes
2answers
124 views
In C++, I want to make a loop that constantly checks the size of a file and do something if the size changes
I'm trying to make a program that will constantly check the size of a file and if the size of the file changes, make the program do something. The file is an html file so another method could be to ...
3
votes
9answers
2k views
Is there an easy way to sort an array of char*'s ? C++
I've got an array of char*'s in a file.
The co. I work for stores data in flat files.. Sometimes the data is sorted, but sometimes it's not.
I'd like to sort the data in the files.
Now I could ...