I have an input (let's say a file). On each line there is a file name. How can I read this file and display the content for each one.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Something like this would do:
The If you really want to do this in a loop, you can:
|
|||
|
|
|
You'll probably want to handle spaces in your file names, abhorrent though they are :-) So I would opt initially for something like:
|
|||
|
|
This will output the filename followed by the file's contents:
|
|||
|
|
|
Here is a
|
|||
|
|
|
In C# // your inputs List filenames = new List { "test1.txt", "test2.txt" };
Hope this helps, Sk8tz |
|||
|
|
