About 190,000 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. FileIO.FileSystem.CopyFile () vs System.IO.File.Copy ()

    Jan 8, 2013 · I expect FileSystem.CopyFile to be a thin layer that simply hands over to File.Copy. There are many such convenience layers in the Microsoft.VisualBasic namespace, many to …

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

    Oct 9, 2018 · Upload_Path = Upload_Path.Substring(0, Upload_Path.LastIndexOf("/")) & "\Resources\" Return Upload_Path End Function I have tried a few methods to try get it to …

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

    If I can't use "My.Computer.FileSystem.CopyFile" (unless I am doing something wrong) to copy rename and move a file, is there a better way then this: ' Rename the file to be copied the …

  5. 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: …

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

    Apr 28, 2016 · 7 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. Example: Source …

  7. Copy files in VB.NET - Stack Overflow

    Aug 17, 2013 · I'm trying to create an installer-like application. Here is what its supposed to do: create a directory in C: and name it batch. Then copy the files from the folder and move it to …

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

    Nov 12, 2019 · @AndrewMortimer No it copies the whole subfolder over into the new location. I want to get all the files in the subfolders and main folder into a new location

  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. timing - How do I delay a vb.net program until a file operation ...

    Jan 13, 2009 · System.IO.File.Copy(myFile, "c:\" & myTemp) Application.DoEvents() OpenFile(myTemp) The problem is that when I call OpenFile, which is just a call to a sub that …