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
Need help
Started by Noel Gallagher, Sep 01 2009 02:49 AM
2 replies to this topic
#1
Posted 01 September 2009 - 02:49 AM
|
|
|
#2
Posted 01 September 2009 - 03:33 AM
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
Posted 01 September 2009 - 03:34 AM
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


Sign In
Create Account

Back to top









