예제 #1
0
        public override async Task WriteStreamAsync(string password, string readPath, string outPath, CancellationToken token)
        {
            foreach (string file in GetAllFiles(readPath, outPath))                                                                        //ファイルを列挙
            {
                Progress.Initialization(file);                                                                                             //プログレスバーに初期値をセット
                Progress.ChangeToMarquee();                                                                                                //状況に合わせてプログレスバーの表示を変更

                await base.WriteStreamAsync(password, file, OutDirPath(outPath, RelativeDirPath(new Uri(outPath), new Uri(file))), token); //列挙されたファイルを一つずつ処理

                if (token.IsCancellationRequested)
                {
                    break;                               //処理の中断
                }
                switch (CryptoMode)
                {
                case CryptoMode.ENCRYPTION:                                                         //暗号化
                    ZipExit.Exit(outPath + @"\" + ZipFileName(readPath) + ".zip", file + ".safer"); //出力された.saferファイルをzipファイルに追加
                    DeleteTemporaryFile(file + ".safer");                                           //一時的に作成された.saferファイルを消去
                    break;

                case CryptoMode.DENCRYPTION:
                    DeleteTemporaryFile(file);    //解凍された.saferファイルを消去
                    break;
                }
            }
        }
예제 #2
0
 /// <summary>
 /// 指定されたフォルダのサブディレクトリを含めたすべてのファイルを取得します
 /// </summary>
 /// <param name="readPath"></param>
 /// <param name="outPath"></param>
 /// <returns></returns>
 private IEnumerable <string> GetAllFiles(string readPath, string outPath)
 {
     if (CryptoMode == CryptoMode.ENCRYPTION)
     {
         return(Directory.EnumerateFiles(readPath, "*", SearchOption.AllDirectories));
     }
     else
     {
         ZipExit.Extract(readPath, outPath + @"\" + ZipFileName(readPath));  //.zipファイルを解凍しフォルダに出力
         return(Directory.EnumerateFiles(outPath + @"\" + ZipFileName(readPath), "*", SearchOption.AllDirectories));
     }
 }