.NET アプリケーション内で圧縮されたファイルを抽出するための安全で信頼性の高い方法を探している場合は、次のアプローチを検討してください。
.NET 4.5 以降では、System.IO.Compression.FileSystem アセンブリ内のネイティブ ZipFile クラスを利用できます。このクラスは、圧縮操作と解凍操作の両方に便利なインターフェイスを提供します。
ZipFile を使用してファイルを解凍するには:
プロセスを示す例は次のとおりです:
using System; using System.IO; namespace ConsoleApplication { class Program { static void Main(string[] args) { // Define file paths string startPath = @"\path\to\source_directory"; string zipPath = @"\path\to\result.zip"; string extractPath = @"\path\to\extraction_directory"; // Create a ZIP archive from the source directory System.IO.Compression.ZipFile.CreateFromDirectory(startPath, zipPath); // Extract the ZIP archive to the destination directory System.IO.Compression.ZipFile.ExtractToDirectory(zipPath, extractPath); } } }
このアプローチは、外部ライブラリや手動のユーザー介入を必要とせずに ZIP ファイルを処理する安全かつ効率的な方法を提供します。
以上が.NET 内のファイルをプログラムで安全に解凍するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。