6 writes to Exists
Microsoft.Build.Tasks.Core (6)
FileState.cs (6)
88Exists = false; 130Exists = false; 142Exists = true; 157Exists = true; 169Exists = true; 181Exists = false;
5 references to Exists
Microsoft.Build.Tasks.Core (5)
FileState.cs (5)
268internal bool FileExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.Exists && !_data.Value.IsDirectory); 275internal bool DirectoryExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.Exists && _data.Value.IsDirectory); 293return _data.Value.Exists ? _data.Value.LastWriteTimeUtc : new DateTime(1601, 1, 1); 307_data.Value.ThrowFileInfoException(!_data.Value.Exists || _data.Value.IsDirectory); 335_data.Value.ThrowFileInfoException(!_data.Value.Exists);