1 write to IsDirectory
Microsoft.Build.Tasks.Core (1)
FileState.cs (1)
169
IsDirectory
= true;
4 references to IsDirectory
Microsoft.Build.Tasks.Core (4)
FileState.cs (4)
267
internal bool FileExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.Exists && !_data.Value.
IsDirectory
);
274
internal bool DirectoryExists => !_data.Value.ThrowNonIoExceptionIfPending() && (_data.Value.Exists && _data.Value.
IsDirectory
);
306
_data.Value.ThrowFileInfoException(!_data.Value.Exists || _data.Value.
IsDirectory
);
335
return _data.Value.
IsDirectory
;