I want to get selected folder path
dlgBrowse.ShowOpen
fname = dlgBrowse.FileName
dlgBrowse.Filter = "Text File (*.txt)|*.txt|Log File (*.log)|*.log||All Files (*.*)|*.*"
dlgBrowse.DialogTitle = "Open Log File"
dlgBrowse.ShowOpen
If dlgBrowse.FileName <> "" Then
txtLogFile.Text = dlgBrowse.FileName
End If
MsgBox fname
this shows the output "C:\MRMS\Report\xyz.txt"
but i want only selected folder path ie if user select only root(MRMS) folder i.e. "C:\MRMS" or any other folder only up to user selected folder or