6 writes to Exists
Microsoft.Build.Tasks.Core (6)
FileState.cs (6)
82Exists = false; 122Exists = false; 134Exists = true; 149Exists = true; 161Exists = true; 173Exists = false;
5 references to Exists
Microsoft.Build.Tasks.Core (5)
FileState.cs (5)
258internal bool FileExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.Exists && !_data.Value.IsDirectory); 265internal bool DirectoryExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.Exists && _data.Value.IsDirectory); 283return _data.Value.Exists ? _data.Value.LastWriteTimeUtc : new DateTime(1601, 1, 1); 297_data.Value.ThrowFileInfoException(!_data.Value.Exists || _data.Value.IsDirectory); 325_data.Value.ThrowFileInfoException(!_data.Value.Exists);