You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The total_bytes property of the FileCompleteRecord comes out of the stats reported by the generated code. This is not always provided, and it's hard to test and fix each of these.
Approach
The most correct way to report the size of the file is to just ask the operating system. Use the python Path,getsize call to get the correct information to report to the app.
The text was updated successfully, but these errors were encountered:
Problem
The
total_bytes
property of theFileCompleteRecord
comes out of the stats reported by the generated code. This is not always provided, and it's hard to test and fix each of these.Approach
The most correct way to report the size of the file is to just ask the operating system. Use the python Path,getsize call to get the correct information to report to the app.
The text was updated successfully, but these errors were encountered: