Have you tried using
string s = System.IO.File.ReadAllText( path );
File.ReadAllText Method (String)
EDIT to comment
To itterate the files in a directory you can try using Directory.GetFiles Method (String)
foreach (string filename in Directory.GetFiles(path))
{
//do what you need here
}
astander
2010-03-04 06:04:26