LogFAQs > #942362067

LurkerFAQs, Active DB, DB1, DB2, DB3, DB4, DB5, DB6, Database 7 ( 07.18.2020-02.18.2021 ), DB8, DB9, DB10, DB11, DB12, Clear
Topic List
Page List: 1
TopicControl V topic
Yellow
07/20/20 4:35:04 PM
#5:


var fileContent = string.Empty;
var filePath = string.Empty;

using (OpenFileDialog openFileDialog = new OpenFileDialog())
{
openFileDialog.InitialDirectory = "c:\\";
openFileDialog.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
openFileDialog.FilterIndex = 2;
openFileDialog.RestoreDirectory = true;

if (openFileDialog.ShowDialog() == DialogResult.OK)
{
//Get the path of specified file
filePath = openFileDialog.FileName;

//Read the contents of the file into a stream
var fileStream = openFileDialog.OpenFile();

using (StreamReader reader = new StreamReader(fileStream))
{
fileContent = reader.ReadToEnd();
}
}
}

---
... Copied to Clipboard!
Topic List
Page List: 1