PHP Classes

how to extract txt files

Recommend this page to a friend!

      PHP RAR Library  >  All threads  >  how to extract txt files  >  (Un) Subscribe thread alerts  
Subject:how to extract txt files
Summary:how to extract txt files
Messages:1
Author:milton gutierrez saban
Date:2016-01-20 23:15:05
 

  1. how to extract txt files   Reply   Report abuse  
Picture of milton gutierrez saban milton gutierrez saban - 2016-01-20 23:15:05
hi, i am trying to extract some txt files inside a rar, but the files extracted are corrupted, i am trying this code:
require("../../Librerias/RarArchiver.php");
$rar = new RarArchiver('../../Archivos/RAR/',RarArchiver::READING);
if($rar->isRar()){
$rar->extractTo('../../Archivos/TXT/');
}
thanks in advance!