Как добиться прогресса при сжатии zip-файла с помощью c # и System.IO.Compression - PullRequest
0 голосов
/ 19 сентября 2019

Мне нужно получить% при сжатии zip-файла с помощью C # с System.IO.Compression.У меня есть этот код:

if (isDirectory) {
                    Invoke(new RefreshConsoleEncryptionDel(RefreshConsoleEncryption), "[+]Wait, compressing folder...");
                    ZipFile.CreateFromDirectory(FileName, FileName + "_DirEnc.zip");
                    Invoke(new RefreshProcessBar1Del(RefreshProcessBar1), 100);
                    Invoke(new RefreshConsoleEncryptionDel(RefreshConsoleEncryption), "[✓]COMPLETED");
                    Invoke(new RefreshConsoleEncryptionDel(RefreshConsoleEncryption), "[K]Starting encrypting file...");

                    byte[] BytePasswordArray = IsFile ? File.ReadAllBytes(Password) : Encoding.UTF8.GetBytes(Password); // We create the array who will contain all bytes of password, depending if its an file password or just a string; 
                                                                                                                        // A simple ternary condition, who checks if is file or string password 
                    FileEncryptProcess(5000000, FileName + "_DirEnc.zip", BytePasswordArray); // We call the function to encrypt the file. 
                                                                              // If all goes allright we continue, else this thread will be aborted and we cant continue to next line. 
                    Thread.CurrentThread.Abort();// If we can continue, then all will be allright and we close this thread succesfully.


                }

И мне нужно обновить ProgressBar1 с процентом, на который проходит сжатие Zip.Это возможно?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...