AcManager.Tools.Objects.ReplayObject.HandleChangedFile C# (CSharp) Method

HandleChangedFile() public method

public HandleChangedFile ( string filename ) : bool
filename string
return bool
        public override bool HandleChangedFile(string filename) {
            if (string.Equals(filename, Location, StringComparison.OrdinalIgnoreCase)) {
                Size = new FileInfo(Location).Length;
            }

            return true;
        }