Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

copy file to folder

Status
Not open for further replies.

cyberwolf14

Programmer
Aug 27, 2001
65
BE
Hi

How do I copy for example "c:\test.exe" to "c:\windows\"

pls help me
 
Dim sSource as string
dim sDest as string

sSource = "c:\test.exe"
sDest = "c:\windows\test.exe"
FileCopy sSource, sDest
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top