예제 #1
0
파일: IO.cs 프로젝트: bakakamo/TadaBuild
 public static void CopyToDir(FileSet files, DirectoryPath toDir, Overwrite overwrite)
 {
     new CopyTask(files) { ToDir = toDir, Overwrite = overwrite}.Execute();
 }
예제 #2
0
파일: IO.cs 프로젝트: bakakamo/TadaBuild
 public static void CopyToDir(FileSet files, DirectoryPath toDir)
 {
     new CopyTask(files) { ToDir = toDir }.Execute();
 }
예제 #3
0
파일: IO.cs 프로젝트: bakakamo/TadaBuild
 public static void Move(FilePath file, DirectoryPath toDir, Overwrite overwrite, bool failOnError = true)
 {
     new MoveTask(file) { ToDir = toDir, Overwrite = overwrite, FailOnError = failOnError }.Execute();
 }
예제 #4
0
파일: IO.cs 프로젝트: bakakamo/TadaBuild
 public static void Move(string file, DirectoryPath toDir, Overwrite overwrite, bool failOnError = true)
 {
     Move((FilePath)file, toDir, overwrite, failOnError);
 }
예제 #5
0
파일: IO.cs 프로젝트: bakakamo/TadaBuild
 public static void Move(FileSet files, DirectoryPath toDir, Overwrite overwrite, bool flatten = false, bool failOnError = true)
 {
     new MoveTask(files) { ToDir = toDir, Overwrite = overwrite, Flatten = flatten, FailOnError = failOnError }.Execute();
 }