:py:mod:`dissect.fat.exfat` =========================== .. py:module:: dissect.fat.exfat Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: dissect.fat.exfat.ExFAT .. py:class:: ExFAT(fh) .. py:method:: cluster_to_sector(cluster) Returns the clusters' corresponding sector address :param cluster: cluster address :type cluster: int :returns: corresponding sector address if available :rtype: int .. py:method:: sector_to_cluster(sector) Returns the sectors' corresponding cluster address :param sector: sector address :type sector: int :returns: corresponding cluster address if available :rtype: int .. py:method:: runlist(starting_cluster, not_fragmented=True, size=None) Creates a RunlistStream compatible runlist from exFAT FAT structures :param starting_cluster: First cluster of file, folder or location in question :type starting_cluster: int :returns: [(sector_offset, run_length)] :rtype: runlist .. py:method:: get_cluster_chain(starting_cluster) Reads the on disk FAT to construct the cluster chain :param starting_cluster: cluster to look-up the chain from :type starting_cluster: int :returns: Chain of clusters. Including starting_cluster :rtype: list