Get parent directory : Dictionary « Data Structure « VB.Net

VB.Net
1. 2D
2. Application
3. Class
4. Data Structure
5. Database ADO.net
6. Development
7. Event
8. File Directory
9. Generics
10. GUI
11. Language Basics
12. Network Remote
13. Thread
14. Windows System
15. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net Tutorial
VB.Net » Data Structure » DictionaryScreenshots 
Get parent directory
Get parent directory

Imports System.IO

Module Module1

    Sub Main()
        Dim Current As String
        Dim Parent As DirectoryInfo

        Try
            Current = Directory.GetCurrentDirectory()
            Parent = Directory.GetParent(Current)

            Console.WriteLine("Current directory {0}", Current)
            Console.WriteLine("Parent directory {0}", Parent.FullName)
        Catch As Exception
            Console.WriteLine("Error determining parent directory")
            Console.WriteLine(E.Message)
        End Try
    End Sub

End Module


           
       
Related examples in the same category
1. Create directory with drive letter and without drive letterCreate directory with drive letter and without drive letter
2. Delete a DirectoryDelete a Directory
3. Check if a directory does not exist, create a directoryCheck if a directory does not exist, create a directory
4. Get and set current working directoryGet and set current working directory
5. List all files under a directoryList all files under a directory
6. List all Directories under a directoryList all Directories under a directory
7. Make Dictionary based on your own Object
8. Your own Generic List Dictionary Your own Generic List Dictionary
w___w__w._j__a__v_a_2___s._c_o___m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.