Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the FileCopier class. Set flags for this object based on the public static
 /// fields on it.
 /// </summary>
 /// <param name="flags">
 /// Flags for this file copier.
 /// </param>
 public FileCopier(FileCopierFlags flags)
 {
     this.flags = flags;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the FileCopier class. No flags are set, so the copier will never
 /// overwrite destination files and fail if any directories in the destination path don't exist.
 /// </summary>
 public FileCopier()
 {
     this.flags = 0;
 }