HI,

Desktop app VS 2022 VB.net VB


I'm trying to FTP a file to "My Documents/PDFs" folder with a desktop app. I have the FTP working just fine but when I set/change the destination path to "My Documents" , "Documents" or "Downloads" (preferred) I get and error
" InnerException: {"Could not find a part of the path 'C:\Downloads\61503.pdf'."}"
I know the C:\downloads directory exists.
Any Ideas?
Code:
  Dim FilenameIs As String = ("61503.pdf")
  Dim destinationPath As String = ("C:/Downloads\61503.pdf")
  Dim client As New WebClient()
  client.Credentials = New NetworkCredential("SigPics", "MtPWD") ' Replace with actual credentials

  Try
      'client.DownloadFile("ftp://ftp.dashleywebs.com/61503.jpg", "C:\Users\Public\Pictures\" & FilenameIs & "") ' Replace with actual paths
      client.DownloadFile("ftp://ftp.dashleywebs.com/61503.jpg", destinationPath) ' Replace with actual paths
      Console.WriteLine("File downloaded successfully using WebClient.")
  Catch ex As Exception
      Console.WriteLine("Error downloading file: " & ex.Message)
  End Try