Shashank Barnawal
How to access client location folder path in windows explorer using asp.net ?
By Shashank Barnawal in .NET on Sep 28 2015
  • Abhisek Das
    Sep, 2016 2

    The following code is For Windows Application:FolderBrowserDialog folderDlg = new FolderBrowserDialog();folderDlg.ShowNewFolderButton = true;DialogResult result = folderDlg.ShowDialog();if (result == DialogResult.OK){txtBrowse.Text = folderDlg.SelectedPath;Environment.SpecialFolder root = folderDlg.RootFolder;}

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS