ZipArchiveEntry.Name 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
zip 보관 위치에 있는 항목의 파일 이름을 가져옵니다.
public:
property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String
속성 값
zip 보관 위치에 있는 항목의 파일 이름입니다.
설명
속성은 Name 최종 디렉터리 구분 문자(\)를 따르는 속성의 FullName 부분을 포함하며 하위 디렉터리 계층을 포함하지 않습니다. 예를 들어 메서드를 사용하여 CreateEntryFromFile zip 보관 파일에 두 개의 항목을 만들고 첫 번째 항목의 이름으로 를 제공하고 NewEntry.txt
두 번째 항목 AddedFolder\\NewEntry.txt
의 경우 두 항목이 모두 속성에 Name 포함 NewEntry.txt
됩니다. 첫 번째 항목도 NewEntry.txt
속성에 FullName 있지만 두 번째 항목은 속성에 FullName 있습니다AddedFolder\\NewEntry.txt
.
예제
다음 예제에서는 zip 보관 파일에서 항목을 검색하고 항목의 속성을 평가하는 방법을 보여줍니다. 속성을 사용하여 항목의 이름을 표시하고 Length 및 CompressedLength 속성을 사용하여 Name 파일이 압축된 양을 계산합니다.
using System;
using System.IO;
using System.IO.Compression;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string zipPath = @"c:\example\result.zip";
using (ZipArchive archive = ZipFile.OpenRead(zipPath))
{
foreach (ZipArchiveEntry entry in archive.Entries)
{
float compressedRatio = (float)entry.CompressedLength / entry.Length;
float reductionPercentage = 100 - (compressedRatio * 100);
Console.WriteLine (string.Format("File: {0}, Compressed {1:F2}%", entry.Name, reductionPercentage));
}
}
}
}
}
Imports System.IO
Imports System.IO.Compression
Module Module1
Sub Main()
Dim zipPath As String = "c:\example\result.zip"
Using archive As ZipArchive = ZipFile.OpenRead(zipPath)
For Each entry As ZipArchiveEntry In archive.Entries
Dim compressedRatio As Single = entry.CompressedLength / entry.Length
Dim reductionPercentage As Single = 100 - (compressedRatio * 100)
Console.WriteLine(String.Format("File: {0}, Compressed {1:F2}%", entry.Name, reductionPercentage))
Next
End Using
End Sub
End Module
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET