HELP! ~ How do I Trim a Path?

I need the code to trim this path to just get the filename

Example: "C:\My Documents\Book.doc"

How do i return just "Book.doc"

An answer or code would be appreciated.

Thank you



Answer this question

HELP! ~ How do I Trim a Path?

  • xRuntime

    System.IO.Path Class
    http://msdn2.microsoft.com/en-us/library/system.io.path.aspx

    Great examples of this class in use doing just what you want.

    http://www.extremeexperts.com/Net/CodeSnippets/Pathclass.aspx


  • Nick Waanders

    You can use something like this

    Dim getmemyfile As String = My.Computer.FileSystem.GetName("d:\my documents\myfile.txt")

    or

    Dim getmemyfile As IO.FileInfo = My.Computer.FileSystem.GetFileInfo("d:\my documents\myfile.txt")

    TextBox1.Text = getmemyfile.Name


  • Janxels

    perfect sample, that's what I was looking for.

    I use it in my project like this:

    Dim myFile As String

    If OpenFileAttach.ShowDialog = Windows.Forms.DialogResult.OK Then

    myFile = My.Computer.FileSystem.GetName(OpenFileAttach.FileName.ToString)

    Me.StatusLabel.Text = "Open file: " & myFile

    End If


  • HELP! ~ How do I Trim a Path?