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