1
Reply

Directory Information in VB.Net

Rajesh Undre

Rajesh Undre

May 29 2015 3:43 AM
397
Dim Current As String
        Dim Parent As DirectoryInfo
        Current = Directory.GetCurrentDirectory()
        Current = Current + "\..\..\Resources\" + My.Resources.Resource1.mymusic
        Parent = Directory.GetParent(Current)
  What is the meaning of  "\..\..\Resources\"  in the above code ? 

Answers (1)