-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl_DiskOperations.py
32 lines (25 loc) · 1.07 KB
/
cl_DiskOperations.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# class to perform disk operations
import os
import sys
class DiskOperations:
def __init__(self):
return
def GetFreeSpace():
# Get available disk space
st = os.statvfs(".")
du = st.f_bavail * st.f_frsize # number of blocks multiplied by block size
# print ('Space available %s' % du) #DEBUG
return du
def KeepDiskSpaceFree(bytes_to_reserve):
# Keep free space above given level
if (DiskOperations.GetFreeSpace() < bytes_to_reserve):
for filename in sorted(os.listdir(".")):
if filename.startswith("capture") and filename.endswith(".jpg"):
os.remove(filename)
print ('Deleted %s to avoid filling disk' % filename)
if (DiskOperations.GetFreeSpace() > bytes_to_reserve):
return
else:
print ('Insufficient Disk Space, capture aborted')
# print ('Bytes to reserve %s' % bytes_to_reserve) #DEBUG
sys.exit()