使用Python计算Android上的剩余磁盘空间

时间:2015-08-09 05:54:18

标签: android python xbmc kodi

我正在为Kodi Media Center制作一个服务插件,它会检查剩余的磁盘空间,并在空间低于500MB时提醒一个人使用我创建的维护工具。它作为单独的服务运行。我需要一种方法来确定Android上使用python的剩余磁盘空间。我尝试使用statvfs()但它显然只兼容类Unix系统,包括OS X.这意味着我可以使用statvfs用于Linux和OSX。我可以在Windows上使用wmi或ctypes,但到目前为止我没有使用Android。我可以创建一个单独的包装器来检查操作系统并为每个使用最好的方法 - 但是我找不到可以执行此操作的Android的python模块。有什么建议吗?

这是我现有的代码:

import xbmc, xbmcgui, xbmcaddon
import os, sys, statvfs, time, datetime
from time import mktime

__addon__       = xbmcaddon.Addon(id='plugin.service.maintenancetool')
__addonname__   = __addon__.getAddonInfo('name')
__icon__        = __addon__.getAddonInfo('icon')

thumbnailPath = xbmc.translatePath('special://thumbnails');
cachePath = os.path.join(xbmc.translatePath('special://home'), 'cache')
tempPath = xbmc.translatePath('special://temp')
addonPath = os.path.join(os.path.join(xbmc.translatePath('special://home'), 'addons'),'plugin.service.maintenancetool')
mediaPath = os.path.join(addonPath, 'media')
databasePath = xbmc.translatePath('special://database')


if __name__ == '__main__':
    #check HDD freespace
    st = os.statvfs(xbmc.translatePath('special://home'))

if st.f_frsize:
    freespace = st.f_frsize * st.f_bavail/1024/1024
else:
    freespace = st.f_bsize * st.f_bavail/1024/1024

print "Free Space: %dMB"%(freespace)
if(freespace < 500):
    text = "You have less than 500MB of free space"
    text1 = "Please use the Maintenance tool"
    text2 = "immediately to prevent system issues"

    xbmcgui.Dialog().ok(__addonname__, text, text1, text2)


while not xbmc.abortRequested:    
    xbmc.sleep(500)

这是我得到的错误:

Error Type: <type 'exceptions.AttributeError'>
Error Contents: 'module' object has no attribute 'statvfs'
Traceback (most recent call last):
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.service.maintenancetool/service.py", line 39, in <module>
st = os.statvfs(xbmc.translatePath('special://home))
Attribute Error: 'module' object has no attribute 'statvfs'

1 个答案:

答案 0 :(得分:0)

我在kodi thread找到了答案,这应该会返回Android设备上剩下的剩余字节数:

content_split = [["A", "B"] for x in range(31756)]