1 write to Mode
Microsoft.NET.Build.Containers (1)
Layer.cs (1)
171
entry.
Mode
= mode;
11 references to Mode
aspire (4)
Bundles\BundleService.cs (2)
282
if (!OperatingSystem.IsWindows() && entry.
Mode
!= default)
284
File.SetUnixFileMode(fullPath, (UnixFileMode)entry.
Mode
);
Utils\ArchiveHelper.cs (2)
110
if (!OperatingSystem.IsWindows() && entry.
Mode
!= default)
112
File.SetUnixFileMode(fullPath, (UnixFileMode)entry.
Mode
);
System.Formats.Tar (7)
System\Formats\Tar\TarEntry.cs (4)
326
TarHelpers.CreateDirectory(destinationFullPath,
Mode
, pendingModes);
349
TarHelpers.CreateDirectory(destinationFullPath,
Mode
, pendingModes);
472
Directory.CreateDirectory(filePath,
Mode
);
626
fileStreamOptions.UnixCreateMode =
Mode
& OwnershipPermissions;
System\Formats\Tar\TarEntry.Unix.cs (3)
17
Interop.CheckIo(Interop.Sys.CreateBlockDevice(destinationFileName, (uint)
Mode
, (uint)_header._devMajor, (uint)_header._devMinor), destinationFileName);
24
Interop.CheckIo(Interop.Sys.CreateCharacterDevice(destinationFileName, (uint)
Mode
, (uint)_header._devMajor, (uint)_header._devMinor), destinationFileName);
31
Interop.CheckIo(Interop.Sys.MkFifo(destinationFileName, (uint)
Mode
), destinationFileName);