Fix #2240 : Win32 freespace issue with large capacity drives

This commit is contained in:
Ratanak 2013-01-01 17:44:11 +00:00 committed by Calum Lind
parent 18bcdd09d3
commit 637578375c
1 changed files with 2 additions and 3 deletions

View File

@ -526,9 +526,8 @@ def free_space(path):
raise InvalidPathError("%s is not a valid path" % path) raise InvalidPathError("%s is not a valid path" % path)
if windows_check(): if windows_check():
import win32file from win32file import GetDiskFreeSpaceEx
sectors, bytes, free, total = map(long, win32file.GetDiskFreeSpace(path)) return GetDiskFreeSpaceEx(path)[0]
return (free * sectors * bytes)
else: else:
disk_data = os.statvfs(path.encode("utf8")) disk_data = os.statvfs(path.encode("utf8"))
block_size = disk_data.f_frsize block_size = disk_data.f_frsize