1 write to FullName
System.IO.Compression (1)
System\IO\Compression\ZipArchiveEntry.cs (1)
144FullName = entryName;
46 references to FullName
Microsoft.Arcade.Common (2)
ZipArchiveManager.cs (2)
38zip.Entries.FirstOrDefault(e => e.FullName == entryName)?.Delete(); 53archive.Entries.FirstOrDefault(e => e.FullName == targetFilename)?.Delete();
Microsoft.AspNetCore.App.UnitTests (5)
SharedFxTests.cs (2)
333.Where(i => i.FullName.EndsWith(".dll", StringComparison.Ordinal)) 334.Select(i => i.FullName).ToHashSet();
TargetingPackTests.cs (3)
376.Where(i => i.FullName.EndsWith(".dll", StringComparison.Ordinal) && !i.FullName.EndsWith(".resources.dll", StringComparison.Ordinal)) 377.Select(i => i.FullName).ToHashSet();
Microsoft.DotNet.Helix.Sdk (4)
ProvisioningProfileProvider.cs (4)
131if (!s_topLevelAppPattern.IsMatch(entry.FullName)) 136string appBundleName = entry.FullName.Split(new[] { '/' }, 2).First(); 138if (entry.FullName == appBundleName + "/" + ProfileFileName) 157if (!zipArchive.Entries.Any(e => e.FullName == ProfileFileName))
Microsoft.DotNet.Internal.SymbolHelper (5)
SymbolUploadHelper.cs (5)
279if (entry.FullName.EndsWith('/')) 285if (!ShouldIndexPackageFile(entry.FullName)) 287logger.Verbose("Skipping {0}", entry.FullName); 291logger.Verbose("Extracting {0}", entry.FullName); 292string entryPath = Path.Combine(packageExtractDir, entry.FullName);
Microsoft.DotNet.NuGetRepack.Tasks (1)
src\ReplacePackageParts.cs (1)
234archive.Entries.FirstOrDefault(e => e.FullName == NuGetUtils.SignaturePartUri)?.Delete();
Microsoft.DotNet.NuGetRepack.Tests (2)
ReplacePackagePartsTests.cs (1)
52}, archive.Entries.Select(e => e.FullName));
VersionUpdaterTests.cs (1)
31return (e.FullName, m.ToArray());
Microsoft.DotNet.SignCheckLibrary (5)
Verification\Jar\JarManifestFileBase.cs (1)
95ZipArchiveEntry manifestArchiveEntry = archive.Entries.First(a => String.Equals(a.FullName, ManifestPath, StringComparison.OrdinalIgnoreCase));
Verification\SignatureVerificationManager.cs (3)
248if (zipArchive.Entries.Any(z => String.Equals(Path.GetExtension(z.FullName), "nuspec", StringComparison.OrdinalIgnoreCase))) 253else if (zipArchive.Entries.Any(z => String.Equals(Path.GetExtension(z.FullName), "vsixmanifest", StringComparison.OrdinalIgnoreCase))) 258else if (zipArchive.Entries.Any(z => String.Equals(z.FullName, "META-INF/MANIFEST.MF", StringComparison.OrdinalIgnoreCase)))
Verification\ZipVerifier.cs (1)
27string relativePath = entry.FullName;
Microsoft.DotNet.SignTool (2)
src\ZipData.cs (1)
227string relativeName = entry.FullName;
src\ZipDataEntry.cs (1)
50_relativePath = entry.FullName; // lgtm [cs/zipslip] Archive from trusted source
Microsoft.ML.Core (1)
Data\Repository.cs (1)
472var path = NormalizeForArchiveEntry(entry.FullName);
Microsoft.ML.Ensemble (4)
EntryPoints\CreateEnsemble.cs (4)
334var entries = zip.Entries.OrderBy(e => e.FullName).ToArray(); 339dataZipEntryNames[i] = entries[i].FullName; 382var entries = zip.Entries.OrderBy(e => e.FullName).ToArray(); 387ch.Check(dataZipEntryNames[i] == entries[i].FullName, errorMsg);
Microsoft.ML.IntegrationTests (1)
ModelFiles.cs (1)
64var versionPath = archive.Entries.First(x => x.FullName == versionFileName);
System.IO.Compression (5)
System\IO\Compression\ZipArchive.cs (2)
422_entriesDictionary.TryAdd(entry.FullName, entry); 439_entriesDictionary.Remove(entry.FullName);
System\IO\Compression\ZipArchiveEntry.cs (3)
241ArgumentNullException.ThrowIfNull(value, nameof(FullName)); 309public string Name => ParseFileName(FullName, _versionMadeByPlatform); 371return FullName;
System.IO.Compression.ZipFile (1)
System\IO\Compression\ZipFileExtensions.ZipArchiveEntry.Extract.cs (1)
122fileDestinationPath = Path.GetFullPath(Path.Combine(destinationDirectoryFullPath, ArchivingUtils.SanitizeEntryFilePath(source.FullName)));
System.IO.Packaging (8)
System\IO\Packaging\ZipPackage.cs (7)
192if (IsZipItemValidOpcPartOrPiece(zipArchiveEntry.FullName)) 214Uri partUri = new Uri(GetOpcNameFromZipItemName(zipArchiveEntry.FullName), UriKind.Relative); 231_ignoredItemHelper.AddItemForAtomicPart(validatedPartUri, zipArchiveEntry.FullName); 1052if (zipFileInfo.FullName.StartsWith(ContentTypesFileUpperInvariant, StringComparison.OrdinalIgnoreCase)) 1055if (zipFileInfo.FullName.Length == ContentTypeFileName.Length) 1394AddItem(pieceInfo.PartUri, pieceInfo.NormalizedPrefixName, pieceInfo.ZipArchiveEntry.FullName); 1418zipFileInfoNameList.Add(pieces[i].ZipArchiveEntry.FullName);
System\IO\Packaging\ZipPackagePartPiece.cs (1)
31bool success = TryParseName(zipArchiveEntry.FullName, out PackUriHelper.ValidatedPartUri? partUri, out string? prefixName, out int pieceNumber, out bool isLastPiece);