5 references to FileInfo
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\IO\File.cs (1)
1433
return new
FileInfo
(originalPath: path, fullPath: fullPath, isNormalized: true);
src\libraries\System.Private.CoreLib\src\System\IO\FileInfo.cs (2)
17
:
this
(fileName ?? throw new ArgumentNullException(nameof(fileName)), isNormalized: false)
97
return new
FileInfo
(destinationPath, isNormalized: true);
src\libraries\System.Private.CoreLib\src\System\IO\FileSystem.Unix.cs (1)
584
FileAttributes attributes = new
FileInfo
(fullPath, null).Attributes;
src\libraries\System.Private.CoreLib\src\System\IO\FileSystemInfo.Unix.cs (1)
22
: new
FileInfo
(fullPath, fileName: fileName, isNormalized: true);