Since COT 2.0.0, the function COT.utilities.available_bytes_at_path() was added, which uses the os.statvfs() API, which is documented as only available on Unix (which appears to include Mac OS X). On Windows, this causes an error. We need to either find a valid alternative API for Windows or degrade behavior gracefully if no such alternative exists.
Since COT 2.0.0, the function
COT.utilities.available_bytes_at_path()
was added, which uses theos.statvfs()
API, which is documented as only available on Unix (which appears to include Mac OS X). On Windows, this causes an error. We need to either find a valid alternative API for Windows or degrade behavior gracefully if no such alternative exists.