我需要你的幫助,我是C#的新手。ZIP壓縮目錄和子目錄中的所有文件(* .txt)c#
我有一個程序壓縮一個文件夾的所有文件和文件夾,但我只想壓縮一個特定類型的文件。
我使用此代碼壓縮:
if (!File.Exists(name_of_zip_folder))
{
ZipFile.CreateFromDirectory(folder, name_of_zip_folder);
}
我想做到以下幾點:
public void Zipfunction(string folder, List<string> files_to_compress){
//compress these kind of files, keeping the structur of the main folder
}
例如:
Zipfunction(main_folder, new List<string> { "*.xlsx", "*.html"});
我怎麼能只壓縮特定文件類型?
我認爲這可以幫助我。謝謝你 – user3345868