Package org.sleuthkit.datamodel

Examples of org.sleuthkit.datamodel.CarvedFileContainer


                    ranges.add((new TskFileRange(af.convertToImgOffset(Long.parseLong(fields[1])), Long.parseLong(fields[2]), ranges.size())));

                    // read the next line
                    line = in.readLine();
                }
                carvedFileContainer.add(new CarvedFileContainer(fileName, fileSize, id, ranges));
            }
            return fileManager.addCarvedFiles(carvedFileContainer);
        }
        catch (IOException | NumberFormatException | TskCoreException ex) {
            logger.log(Level.SEVERE, "Error parsing PhotoRec output and inserting it into the database: {0}", ex); //NON_NLS
View Full Code Here

TOP

Related Classes of org.sleuthkit.datamodel.CarvedFileContainer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.