pandazx's blog

データ分析など雑多な技術ブログ

2014-12-02から1日間の記事一覧

C#でzipファイルの16進数文字列をバイナリにして出力

C#

zipファイルのバイナリをテキストダンプした後で 解凍して中身を取り出したい場合のサンプルコード。 以下の例では結果をD:\test.zip として出力する。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using Syste…

C#でzipファイル解凍

C#

src.zipを解凍して、C:\dstフォルダに出力するサンプル。コンソールアプリケーションのプロジェクトを作成して以下を記述 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading…