9 references to ArchivingUtils
System.IO.Compression.ZipFile (9)
System\IO\Compression\ZipFile.Create.Async.cs (3)
537string entryName = ArchivingUtils.EntryFromPath(fullPath.AsSpan(basePath.Length)); 542if (ArchivingUtils.IsDirEmpty(fullPath)) 544string entryName = ArchivingUtils.EntryFromPath(fullPath.AsSpan(basePath.Length), appendPathSeparator: true);
System\IO\Compression\ZipFile.Create.cs (4)
485string entryName = ArchivingUtils.EntryFromPath(fullPath.AsSpan(basePath.Length)); 490if (ArchivingUtils.IsDirEmpty(fullPath)) 492string entryName = ArchivingUtils.EntryFromPath(fullPath.AsSpan(basePath.Length), appendPathSeparator: true); 577archive.CreateEntry(ArchivingUtils.EntryFromPath(di.Name, appendPathSeparator: true));
System\IO\Compression\ZipFileExtensions.ZipArchiveEntry.Extract.cs (2)
182ArchivingUtils.AttemptSetLastWriteTime(destinationFileName, source.LastWriteTime); 193string sanitizedEntryPath = ArchivingUtils.SanitizeEntryFilePath(source.FullName);