Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: help with unraring

by gautamparimoo (Beadle)
on Apr 24, 2012 at 11:23 UTC ( [id://966799]=note: print w/replies, xml ) Need Help??


in reply to Re: help with unraring
in thread help with unraring

thanks for the reply. $result gives error -->found in chain.already processed. What does that mean ? How can i remove it?

Replies are listed 'Best First'.
Re^3: help with unraring
by nikosv (Deacon) on Apr 24, 2012 at 20:13 UTC
    is that a multipart file you are trying to extract? you can safely ignore this message;it merely says that the file has been already processed.It is used for caching purposes

      yes it is a multipart file. But the archive is not extracted to the given directory because of this error.

      Also can you tell me how to process each extracted file one at a time such that one file is extracted and its contents are processed for a regex than the next one is processed in similar fashion and so on instead of just extracting in a single go?

        When you have a multipart file i.e
        test.part1.rar test.part2.rar test.part3.rar
        all parts form a chain.

        what it does is that when reading the first part test.part1.rar,it extracts all the file contents spanning all other parts but also scans the filenames for the rest of the parts so that in a batch job they do not get needelsy processed again since they have been already extracted;that is the caching process.

        The "error" you see simply means that it has already seen the other parts and so diregards their processing. That is not the cause of the file not being extracted. Post your code to check what you are trying to do

        Also can you tell me how to process each extracted file one at a time such that one file is extracted and its contents are processed for a regex than the next one is processed in similar fashion and so on instead of just extracting in a single go?

        unfortunatelly this cannot happen;everything has to uncompressed in one go

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://966799]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-25 06:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found