1
Answer

Directory Information in VB.Net

Rajesh Undre

Rajesh Undre

9y
404
1
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)