Click here to Skip to main content
15,881,588 members
Articles / Programming Languages / Visual Basic
Tip/Trick

How to get File Name from Full file Path

Rate me:
Please Sign up or sign in to vote.
3.44/5 (15 votes)
14 Jul 2010CPOL 29.3K   4   6
File Name from Path
The following tip will help you to dig out the following details from Full File Path:

1) FileName

2) Extension

3) FileNameWithoutExtension

4) DirectoryName

5) PathRoot

VB
Imports System.IO

Dim _FullPath As String = "C:\Users\Sony\Desktop\Readme.txt"<br>
        MsgBox(Path.GetFileName(_FullPath)) 'Returns >> Readme.txt
        MsgBox(Path.GetExtension(_FullPath)) 'Returns >> .txt
        MsgBox(Path.GetFileNameWithoutExtension(_FullPath)) 'Returns >> Readme
        MsgBox(Path.GetDirectoryName(_FullPath)) 'Returns >> C:\Users\Sony\Desktop
        MsgBox(Path.GetPathRoot(_FullPath)) 'Returns >> C:\</br>

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralReason for my vote of 5 I must admit that i didn't knew it..... Pin
GPUToaster™18-Jul-10 6:56
GPUToaster™18-Jul-10 6:56 
GeneralReason for my vote of 5 Path is one of the great overlooked ... Pin
Martin Jarvis16-Jul-10 8:00
Martin Jarvis16-Jul-10 8:00 
Reason for my vote of 5
Path is one of the great overlooked utility classes!

Every .Net developer should know and love this stuff.
GeneralReason for my vote of 5 Something so simple that has killed ... Pin
Akash Badrinath15-Jul-10 22:46
Akash Badrinath15-Jul-10 22:46 
GeneralReason for my vote of 5 Why the low vote? It taught me somet... Pin
Anthony Daly14-Jul-10 6:37
Anthony Daly14-Jul-10 6:37 
GeneralReason for my vote of 1 how come its a tip/tricks? Pin
Shahriar Iqbal Chowdhury/Galib3-Jul-10 5:24
professionalShahriar Iqbal Chowdhury/Galib3-Jul-10 5:24 
GeneralReason for my vote of 1 default functions Pin
BugByter3-Jul-10 4:25
BugByter3-Jul-10 4:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.