zip 파일을 wav 로 변환하고 wav 파일을 다시 zip 파일로 변환하기
zip 파일을 wav 로 변환하고 wav 파일을 다시 zip 파일로 변환하기 using System.Security.Cryptography;using System.Text;namespace FileWav{ internal class Program { static void Main(string[] args) { string zipFilePath = "input.zip"; string wavFilePath = "output.wav"; string extractedZipFilePath = "extracted.zip"; string password = "yourpassword"; // 원하는 비밀번..