6 writes to Exists
Microsoft.Build.Tasks.Core (6)
FileState.cs (6)
81Exists = false; 121Exists = false; 133Exists = true; 148Exists = true; 160Exists = true; 172Exists = 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); 326_data.Value.ThrowFileInfoException(!_data.Value.Exists);