About 43,400 results
Open links in new tab
  1. How to copy/replace a file into a folder in VB.NET?

    I used File.Copy(source, target, True), where source is a full path name, like c:\source.txt and target is a folder, which may contain the same named file. I want to copy source.txt to a target …

  2. VB.net How To Copy File To New Location - Stack Overflow

    Oct 9, 2018 · VB.net How To Copy File To New Location Asked 7 years, 1 month ago Modified 7 years, 1 month ago Viewed 7k times

  3. FileIO.FileSystem.CopyFile () vs System.IO.File.Copy ()

    Jan 8, 2013 · FileIO.FileSystem.CopyFile(source, destination, True) System.IO.File.Copy(source, destination, True) My two questions are What are the differences between the 2 with the …

  4. vb.net - Copy all files in subfolders into new folder - Stack Overflow

    Nov 12, 2019 · Public Sub CopyAllFiles(ByVal sourcePath As String, ByVal destPath As String) Dim files() As String = IO.Directory.GetFiles(destPath) For Each file As String In files ' Do …

  5. .net - How to copy a file from one directory to another directory …

    Apr 28, 2016 · I have some problem with copying the file from one directory to another directory by creating the folder if that folder does not exist in the destination directory.

  6. vb.net - Copy files with progress - Stack Overflow

    Feb 4, 2012 · I am wanting the most efficient way to copy a file with a progress bar updating the copy percentage. This is the standard copy code I am using: …

  7. vb.net - How to create a copy of a file having length more than …

    How to create a copy of a file having length more than 260 characters including file name using vb.net When we are trying to create a copy using File.Copy method it throws exception as …

  8. vb.net - Better Way to Copy Move Rename File, Visual Basic (VS …

    vb.net copy rename overwrite file-copying asked May 8, 2013 at 2:13 user2348797 383 4 9 22

  9. Copying a folder and it's contents in vb.net - Stack Overflow

    Oct 19, 2016 · I want to copy a specific folder and it's contents using vb.net, the methods I found all just copy the contents of the specified folder but not the folder as a whole.

  10. Copy files in VB.NET - Stack Overflow

    Aug 17, 2013 · What do I do with it? If the file that is to be copied is from: E:\Documents and Settings\Rew\My Documents\Visual Studio 2008\Projects\batch\batch I want it to be universal. …