Jump to content

Need help

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
Noel Gallagher

Noel Gallagher

    Newbie

  • Members
  • Pip
  • 2 posts
Guys, im new, I want to create a program that the objective is copy folders to one specific place, I made the design, my problem is the code, if somebody could help, is better to add me on msn, or say it here:p

#2
mH_p0rtal

mH_p0rtal

    Newbie

  • Members
  • PipPip
  • 10 posts
in C# you can use these methods

DirectoryInfo di = new DirectoryInfo("c:\\tst\\a");

di.MoveTo("c:\\tst\\b");
di.CopyTo("c:\\tst\\b");


#3
Noel Gallagher

Noel Gallagher

    Newbie

  • Members
  • Pip
  • 2 posts

mH_p0rtal said:

in C# you can use these methods


DirectoryInfo di = new DirectoryInfo("c:\\tst\\a");


di.MoveTo("c:\\tst\\b");

di.CopyTo("c:\\tst\\b");


Tks a lot mate;)REP