Ziad Mallah
Ziad Mallah

Reputation: 1

How to Copy a text file from one folder to another in VB?

I am a newbie programmer, looking for a way to copy a .txt file from one folder to another, can anyone help me? (Visual Basic 2010 Express)

Upvotes: 0

Views: 2260

Answers (1)

Eric J.
Eric J.

Reputation: 150238

Look at System.IO.File.Copy.

That handles file copy operations for you.

Here's an example of usage in VB.Net.

Upvotes: 2

Related Questions