/** * Starts in a specified byte offset of the opened disk images and looks for a * file system. Will call processFile() on each file * that is found. * * @param a_start Byte offset of file system starting location. * @param a_ftype Type of file system that is located at the offset. * * @returns 1 on error and 0 on success */ uint8_t TskAuto::findFilesInFs(TSK_OFF_T a_start, TSK_FS_TYPE_ENUM a_ftype) { if (findFilesInFsRet(a_start, a_ftype) == TSK_ERR) return 1; else return 0; }
/** * Starts in a specified byte offset of the opened disk images and looks for a * file system. Will call processFile() on each file * that is found. * * @param a_start Byte offset of file system starting location. * * @returns 1 on error and 0 on success */ uint8_t TskAuto::findFilesInFs(TSK_OFF_T a_start) { if (findFilesInFsRet(a_start, TSK_FS_TYPE_DETECT) == TSK_ERR) return 1; else return 0; }
/** * Starts in a specified byte offset of the opened disk images and looks for a * file system. Will call processFile() on each file * that is found. * * @param a_start Byte offset of file system starting location. * @param a_ftype Type of file system that is located at the offset. * * @returns 1 if an error occured (messages will have been registered) and 0 on success */ uint8_t TskAuto::findFilesInFs(TSK_OFF_T a_start, TSK_FS_TYPE_ENUM a_ftype) { findFilesInFsRet(a_start, a_ftype); return m_errors.empty() ? 0 : 1; }