public string OpenTextFile( string _filePath ){
FileInfo fi = new FileInfo(_filePath);
string returnSt = "";
try {
using (StreamReader sr = new StreamReader(fi.OpenRead(), Encoding.UTF8)){
returnSt = sr.ReadToEnd();
}
} catch (Exception e){
print (e.Message);
returnSt = "READ ERROR: " + _filePath;
}
return returnSt;
}