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

link|improve this question

11% accept rate
feedback

1 Answer

Try this

Private Function GetRootDir(byval inputString as string) as Integer

'min real path is c:\.  We need a len of at least 2
If len(inputString) <2
    GetRootDir=""
EndIf
dim t as integer,s as integer

 t=instr(1,inputString,"\")
 If t <1 Then
     GetRootDir=""
     Exit Function
 End If

 s=instr(t+1,inputString,"\")
 'If this is the root folder that was selected
 If s < 1 then 
     GetRootDir = mid(inputString,t+1)
     Exit Function
 end If
 GetRootDir = Mid(inputString,t+1,s-t-1)

End Function

Then, in your code, reference the function like this...

txtLogFile.Text = GetRootDir(dlgBrowse.FileName)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.