Как проверить, существует ли файл в папке

Я пытаюсь скопировать некоторые файлы в папку. Я использую следующий оператор, чтобы проверить, существует ли источник fie

 If My.Computer.FileSystem.FileExists(fileToCopy) Then

Но я не знаю, как проверить, существует ли файл в папке перед копированием. Просьба сообщить.

Спасибо и с наилучшими пожеланиями, Фуркан

Ответ 1

Dim SourcePath As String = "c:\SomeFolder\SomeFileYouWantToCopy.txt" 'This is just an example string and could be anything, it maps to fileToCopy in your code.
Dim SaveDirectory As string = "c:\DestinationFolder"

Dim Filename As String = System.IO.Path.GetFileName(SourcePath) 'get the filename of the original file without the directory on it
Dim SavePath As String = System.IO.Path.Combine(SaveDirectory, Filename) 'combines the saveDirectory and the filename to get a fully qualified path.

If System.IO.File.Exists(SavePath) Then
   'The file exists
Else
    'the file doesn't exist
End If