9 references to ArchivingUtils
System.IO.Compression.ZipFile (9)
System\IO\Compression\ZipFile.Create.Async.cs (3)
475
string entryName =
ArchivingUtils
.EntryFromPath(fullPath.AsSpan(basePath.Length));
480
if (
ArchivingUtils
.IsDirEmpty(fullPath))
485
string entryName =
ArchivingUtils
.EntryFromPath(fullPath.AsSpan(basePath.Length), appendPathSeparator: true);
System\IO\Compression\ZipFile.Create.cs (4)
441
string entryName =
ArchivingUtils
.EntryFromPath(fullPath.AsSpan(basePath.Length));
446
if (
ArchivingUtils
.IsDirEmpty(fullPath))
451
string entryName =
ArchivingUtils
.EntryFromPath(fullPath.AsSpan(basePath.Length), appendPathSeparator: true);
530
archive.CreateEntry(
ArchivingUtils
.EntryFromPath(di.Name, appendPathSeparator: true));
System\IO\Compression\ZipFileExtensions.ZipArchiveEntry.Extract.cs (2)
106
ArchivingUtils
.AttemptSetLastWriteTime(destinationFileName, source.LastWriteTime);
122
fileDestinationPath = Path.GetFullPath(Path.Combine(destinationDirectoryFullPath,
ArchivingUtils
.SanitizeEntryFilePath(source.FullName)));