cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Reading files in a vector or list and sa
Reading files in a vector or list and save these
Feb 12, 2009 at 10:26pm UTC
jui
(16)
Dear Expert Programmers,
I need your help and advice in the following question and I will appreciate your consideration very much. My present function as attached[code]string getdir (string dir, vector<string> &files)
FileWvIn tr("filename[i]");
fsize = tr.getSize();
}
f.close()
Thank you for the kind help
Last edited on
Feb 19, 2009 at 10:31pm UTC
Feb 12, 2009 at 11:36pm UTC
Zaita
(2770)
1
2
3
4
for
(
int
i = 0; i < (
int
)files.size(); ++i) { FileWvIn tr(files[i]);
// etc
}
Topic archived. No new replies allowed.