Results 1 to 3 of 3

Thread: Illegal characters in path

  1. #1

    Thread Starter
    Lively Member
    Join Date
    May 2006
    Posts
    73

    Illegal characters in path

    I have this code to copy directories:

    Code:
    Public Function CopyDirectory(ByVal Src As String, ByVal Dest As String, Optional _
      ByVal bQuiet As Boolean = False) As Boolean
            If Not IO.Directory.Exists(Src) Then
                Throw New DirectoryNotFoundException("The directory " & Src & " does not exists")
            End If
            If IO.Directory.Exists(Dest) AndAlso Not bQuiet Then
                If MessageBox.Show("directory " & Dest & " already exists." & vbCrLf & _
                "If you continue, any files with the same name will be overwritten", _
                "Continue?", MessageBoxButtons.OKCancel, MessageBoxIcon.Question, _
                MessageBoxDefaultButton.Button2) = DialogResult.Cancel Then Exit Function
            End If
    
            'add Directory Seperator Character (\) for the string concatenation shown later
            If Dest.Substring(Dest.Length - 1, 1) <> Path.DirectorySeparatorChar Then
                Dest += Path.DirectorySeparatorChar
            End If
            If Not Directory.Exists(Dest) Then Directory.CreateDirectory(Dest)
            Dim Files As String()
            Files = Directory.GetFileSystemEntries(Src)
            Dim element As String
            For Each element In Files
                If Directory.Exists(element) Then
                    'if the current FileSystemEntry is a directory,
                    'call this function recursively
                    CopyDirectory(element, Dest & Path.GetFileName(element), True)
                Else
                    'the current FileSystemEntry is a file so just copy it
                    File.Copy(element, Dest & Path.GetFileName(element), True)
                End If
            Next
            Return True
        End Function
    But it can't really deal with illegal characters, as it errors out and highlights this line

    Code:
    File.Copy(element, Dest & Path.GetFileName(element), True)
    Can anyone help?

    Br00nage.

  2. #2
    Discovering Life Siddharth Rout's Avatar
    Join Date
    Feb 2005
    Location
    Mumbai, India
    Posts
    12,001

    Re: Illegal characters in path

    What is the value of

    element, Dest, Path.GetFileName(element)

    at the time of error?
    A good exercise for the Heart is to bend down and help another up...
    Please Mark your Thread "Resolved", if the query is solved


    MyGear:
    ★ CPU ★ Ryzen 5 5800X
    ★ GPU ★ NVIDIA GeForce RTX 3080 TI Founder Edition
    ★ RAM ★ G. Skill Trident Z RGB 32GB 3600MHz
    ★ MB ★ ASUS TUF GAMING X570 (WI-FI) ATX Gaming
    ★ Storage ★ SSD SB-ROCKET-1TB + SEAGATE 2TB Barracuda IHD
    ★ Cooling ★ NOCTUA NH-D15 CHROMAX BLACK 140mm + 10 of Noctua NF-F12 PWM
    ★ PSU ★ ANTEC HCG-1000-EXTREME 1000 Watt 80 Plus Gold Fully Modular PSU
    ★ Case ★ LIAN LI PC-O11 DYNAMIC XL ROG (BLACK) (G99.O11DXL-X)
    ★ Monitor ★ LG Ultragear 27" 240Hz Gaming Monitor
    ★ Keyboard ★ TVS Electronics Gold Keyboard
    ★ Mouse ★ Logitech G502 Hero

  3. #3

    Thread Starter
    Lively Member
    Join Date
    May 2006
    Posts
    73

    Re: Illegal characters in path

    I think it resovles to a font file which has "?" at the end of the file name which is obviously the illegal character.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width