6 writes to Exists
Microsoft.Build.Tasks.Core (6)
FileState.cs (6)
82
Exists
= false;
122
Exists
= false;
134
Exists
= true;
149
Exists
= true;
161
Exists
= true;
173
Exists
= false;
5 references to Exists
Microsoft.Build.Tasks.Core (5)
FileState.cs (5)
258
internal bool FileExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.
Exists
&& !_data.Value.IsDirectory);
265
internal bool DirectoryExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.
Exists
&& _data.Value.IsDirectory);
283
return _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
);