How to copy folder to another folder?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • fanoftvb
    New Member
    • Mar 2007
    • 29

    How to copy folder to another folder?

    Hi, i need to copy a folder to another folder. Can someone show me how to do it? I'm using vb 2005 Thanks.
  • channaJ
    New Member
    • Mar 2007
    • 67

    #2
    Originally posted by fanoftvb
    Hi, i need to copy a folder to another folder. Can someone show me how to do it? I'm using vb 2005 Thanks.
    Hi,

    You can use
    Code:
    Directory.Move(string sourceDirName, string destDirName)
    method for this.

    Comment

    Working...