6 writes to Exists
Microsoft.Build.Tasks.Core (6)
FileState.cs (6)
88
Exists
= false;
130
Exists
= false;
142
Exists
= true;
157
Exists
= true;
169
Exists
= true;
181
Exists
= false;
5 references to Exists
Microsoft.Build.Tasks.Core (5)
FileState.cs (5)
268
internal bool FileExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.
Exists
&& !_data.Value.IsDirectory);
275
internal bool DirectoryExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.
Exists
&& _data.Value.IsDirectory);
293
return _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
);