4 writes to Exists
Microsoft.Build.Tasks.Core (4)
FileState.cs (4)
87Exists = false; 156Exists = true; 168Exists = true; 180Exists = false;
5 references to Exists
Microsoft.Build.Tasks.Core (5)
FileState.cs (5)
267internal bool FileExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.Exists && !_data.Value.IsDirectory); 274internal bool DirectoryExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.Exists && _data.Value.IsDirectory); 292return _data.Value.Exists ? _data.Value.LastWriteTimeUtc : new DateTime(1601, 1, 1); 306_data.Value.ThrowFileInfoException(!_data.Value.Exists || _data.Value.IsDirectory); 334_data.Value.ThrowFileInfoException(!_data.Value.Exists);