6 references to ArchivingUtils
System.IO.Compression.ZipFile (6)
System\IO\Compression\ZipFile.Create.cs (4)
494string entryName = ArchivingUtils.EntryFromPath(fullPath.AsSpan(basePath.Length)); 499if (ArchivingUtils.IsDirEmpty(fullPath)) 504string entryName = ArchivingUtils.EntryFromPath(fullPath.AsSpan(basePath.Length), appendPathSeparator: true); 516archive.CreateEntry(ArchivingUtils.EntryFromPath(di.Name, appendPathSeparator: true));
System\IO\Compression\ZipFileExtensions.ZipArchiveEntry.Extract.cs (2)
97ArchivingUtils.AttemptSetLastWriteTime(destinationFileName, source.LastWriteTime); 117string fileDestinationPath = Path.GetFullPath(Path.Combine(destinationDirectoryFullPath, ArchivingUtils.SanitizeEntryFilePath(source.FullName)));