El título lo dice todo:
- Leí en un archivo tar.gz así
- dividir el archivo en una matriz de bytes
- Convierta esos bytes en una cadena Base64
- Convierta esa cadena Base64 nuevamente en una matriz de bytes
- Vuelva a escribir esos bytes en un nuevo archivo tar.gz
Puedo confirmar que ambos archivos tienen el mismo tamaño (el método a continuación devuelve verdadero) pero ya no puedo extraer la versión de copia.
¿Me estoy perdiendo de algo?
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);
}
EDITAR: El ejemplo de trabajo es mucho más simple (gracias a @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);
}
¡Gracias!
No puede simplemente cambiar el contenido de un archivo comprimido como ese. Tendrá que descomprimir el archivo en el paso 1 en lugar de leerlo directamente como está. Y luego el paso 5 también tendrá que recomprimir los datos en lugar de simplemente escribir los bytes directamente.
—
itsme86
Afortunadamente, como no hubo manipulación real del archivo en sí (básicamente, simplemente moviéndolo del punto A al B), esta tarea en particular no requiere ninguna compresión (de /)
—
darkpbj