What would be best way to copy a file

Steve48

New member
Joined
Apr 11, 2009
Messages
4
Programming Experience
10+
I am new to vb.net
I need to automate the selection of a pdf file on the desktop, and then copying it a specific folder and then renaming it. TIA - Steve
 
I need a GUI. This is for people that are not computer literate. They need to get a list of pdf files that are on the desktop. They should select the one of interest, and it will automatically be copied into a specific folder and automatically renamed.
 
Well you can use Directory.GetFiles() to get a list of PDF's from any folder, then use File.Copy() to copy & rename (at the same time) from any folder to any folder
 
Back
Top