ZipArchiveEntry.Name プロパティ

定義

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 部分が含まれており、サブディレクトリ階層は含まれません。 たとえば、 メソッドを使用して zip アーカイブに 2 つのエントリをCreateEntryFromFile作成し、最初のエントリと AddedFolder\\NewEntry.txt 2 番目のエントリの名前として を指定NewEntry.txtすると、両方のエントリが NewEntry.txt プロパティにName含まれます。 最初のエントリは プロパティにも FullNameNewEntry.txtまれますが、2 番目のエントリは プロパティに含FullNameAddedFolder\\NewEntry.txtまれます。

次の例は、zip アーカイブからエントリを取得し、エントリのプロパティを評価する方法を示しています。 プロパティを Name 使用してエントリの名前を表示し Length 、 プロパティと CompressedLength プロパティを使用してファイルが圧縮された量を計算します。

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

適用対象