I was looking into calculating total file size within a folder programmatically for display purposes. I have a method that calls DropboxClient.ListFoldersAsync with the path and recursive set to true, then iterate through each of the objects that are MetaData.IsFile and adds the size. The FileMetaData.Size for .paper or .gdoc file types always have the same value (ulong 75), so it makes me believe it is a pointer to where the file is actually stored. I looked into the Network tab when clicking Calculate Size in Dropbox and saw it made a request to
https://www.dropbox.com/2/folders/get_subfolder_sizes_in_same_namespace
and
https://www.dropbox.com/2/folders/get_shared_subfolder_sizes
Is there a way to get the actual file size for these cloud file types, or is there a helper method in the Dropbox SDK to achieve the same calculations as is possible through Dropbox's GUI?