제목은 모든 것을 말합니다.
- 나는 그렇게 tar.gz 아카이브에서 읽었다.
- 파일을 바이트 배열로 나누기
- 해당 바이트를 Base64 문자열로 변환
- Base64 문자열을 다시 바이트 배열로 변환
- 해당 바이트를 새 tar.gz 파일에 다시 씁니다.
두 파일의 크기가 같은 것을 확인할 수 있지만 (아래 방법이 true를 반환 함) 더 이상 복사본 버전을 추출 할 수 없습니다.
내가 뭔가를 놓치고 있습니까?
Boolean MyMethod(){
using (StreamReader sr = new StreamReader("C:\...\file.tar.gz")) {
String AsString = sr.ReadToEnd();
byte[] AsBytes = new byte[AsString.Length];
Buffer.BlockCopy(AsString.ToCharArray(), 0, AsBytes, 0, AsBytes.Length);
String AsBase64String = Convert.ToBase64String(AsBytes);
byte[] tempBytes = Convert.FromBase64String(AsBase64String);
File.WriteAllBytes(@"C:\...\file_copy.tar.gz", tempBytes);
}
FileInfo orig = new FileInfo("C:\...\file.tar.gz");
FileInfo copy = new FileInfo("C:\...\file_copy.tar.gz");
// Confirm that both original and copy file have the same number of bytes
return (orig.Length) == (copy.Length);
}
편집 : 작업 예제는 훨씬 더 간단합니다 (@TS 덕분에).
Boolean MyMethod(){
byte[] AsBytes = File.ReadAllBytes(@"C:\...\file.tar.gz");
String AsBase64String = Convert.ToBase64String(AsBytes);
byte[] tempBytes = Convert.FromBase64String(AsBase64String);
File.WriteAllBytes(@"C:\...\file_copy.tar.gz", tempBytes);
FileInfo orig = new FileInfo(@"C:\...\file.tar.gz");
FileInfo copy = new FileInfo(@"C:\...\file_copy.tar.gz");
// Confirm that both original and copy file have the same number of bytes
return (orig.Length) == (copy.Length);
}
감사!
이렇게 압축 된 파일의 내용을 변경할 수는 없습니다. 파일을 그대로 직접 읽는 대신 1 단계에서 파일의 압축을 풀어야합니다. 그런 다음 5 단계도 마찬가지로 바이트를 직접 쓰는 대신 데이터를 다시 압축해야합니다.
—
itsme86
다행히도 파일 자체에 대한 실제 조작이 없었기 때문에 (기본적으로 A 지점에서 B 지점으로 이동)이 특정 작업에는 (해제 /) 압축이 필요하지 않습니다
—
darkpbj 2014 년