Package org.sleuthkit.autopsy.coreutils.LnkEnums

Examples of org.sleuthkit.autopsy.coreutils.LnkEnums.CommonCLSIDS


    }
   
    private List<String> parseLinkTargetIdList(List<byte[]> idList) {
        List<String> ret = new ArrayList<String>();
        if(!idList.isEmpty()) {
            CommonCLSIDS clsid = CommonCLSIDS.valueOf(Arrays.copyOfRange(idList.remove(0), 2, 18));
            switch (clsid) {
                case CDrivesFolder:
                    ret.add(new String(Arrays.copyOfRange(idList.remove(0), 1, 17)).split("\0")[0]);
                    ret.addAll(parsePathElements(idList));
                    break;
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.coreutils.LnkEnums.CommonCLSIDS

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.