Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
OpenFileDialog ofdMyDialog = new OpenFileDialog();
ofdMyDialog.Filter = "Text Files (*.txt)|*.txt|All Files (*.*)|*.*";
ofdMyDialog.CheckFileExists = true;
string strFileName = string.empty;
if (ofdMyDialog.ShowDialog() == DialogResult.OK)
{
// They clicked the ok button, should have a pathname here
strFileName = ofdMyDialog.FileName;
}