Example #1
0
        public FileInfoCompare(FileInfo fiSource, FileInfo fiDestination)
        {
            this.fiLeftAct   = fiSource;
            this.fiRightAct  = fiDestination;
            this.fiLeftLast  = null;
            this.fiRightLast = null;

            compareType  = FileInfoCompareType.SingleMaster;
            compareItems = new List <FileInfoCompareItem>();
        }
Example #2
0
		public FileInfoCompare(FileInfo fiLeftAct, FileInfo fiLeftLast, FileInfo fiRightAct, FileInfo fiRightLast)
		{
			this.fiLeftAct = fiLeftAct;
			this.fiRightAct = fiRightAct;
			this.fiLeftLast = fiLeftLast;
			this.fiRightLast = fiRightLast;

			compareType = FileInfoCompareType.FullSync;
			compareItems = new List<FileInfoCompareItem>();
		}
Example #3
0
        public FileInfoCompare(FileInfo fiLeftAct, FileInfo fiLeftLast, FileInfo fiRightAct, FileInfo fiRightLast)
        {
            this.fiLeftAct   = fiLeftAct;
            this.fiRightAct  = fiRightAct;
            this.fiLeftLast  = fiLeftLast;
            this.fiRightLast = fiRightLast;

            compareType  = FileInfoCompareType.FullSync;
            compareItems = new List <FileInfoCompareItem>();
        }
Example #4
0
		public FileInfoCompare(FileInfo fiSource, FileInfo fiDestination)
		{
			this.fiLeftAct = fiSource;
			this.fiRightAct = fiDestination;
			this.fiLeftLast = null;
			this.fiRightLast = null;

			compareType = FileInfoCompareType.SingleMaster;
			compareItems = new List<FileInfoCompareItem>();
		}