fileList.py update
Signed-off-by: tiagorg <tiagorg@rendlaptop>
This commit is contained in:
parent
81b40a51e5
commit
a4900b7585
|
@ -8,11 +8,13 @@ def main():
|
||||||
|
|
||||||
|
|
||||||
def printFilesSize(path):
|
def printFilesSize(path):
|
||||||
print(f'|{"-"*35}|')
|
print(f'|{"-"*78}|')
|
||||||
print(f'| {"File":<20} {"Size":>12} |\n|{"-"*35}|')
|
print(f'| {"File":<63} {"Size":>12} |\n|{"-"*78}|')
|
||||||
for file in os.listdir(path):
|
for file in os.listdir(path):
|
||||||
base_size = os.stat(f'{path}/{file}').st_size
|
base_size = os.stat(f'{path}/{file}').st_size
|
||||||
if base_size < 1024:
|
if os.path.isdir(f'{path}/{file}'):
|
||||||
|
size = "-Directory-"
|
||||||
|
elif base_size < 1024:
|
||||||
size = str(base_size) + ' B'
|
size = str(base_size) + ' B'
|
||||||
elif base_size < 1024 ** 2:
|
elif base_size < 1024 ** 2:
|
||||||
size = f'{base_size // 1024}.{str(base_size % 1024)[0]} KB'
|
size = f'{base_size // 1024}.{str(base_size % 1024)[0]} KB'
|
||||||
|
@ -20,8 +22,8 @@ def printFilesSize(path):
|
||||||
size = f'{base_size // (1024**2)}.{str(base_size % (1024**2))[0]} MB'
|
size = f'{base_size // (1024**2)}.{str(base_size % (1024**2))[0]} MB'
|
||||||
else:
|
else:
|
||||||
size = f'{base_size // (1024**3)}.{str(base_size % (1024**3))[0]} GB'
|
size = f'{base_size // (1024**3)}.{str(base_size % (1024**3))[0]} GB'
|
||||||
print(f'| {file:<20} {size:>12} |')
|
print(f'| {file:<63} {size:>12} |')
|
||||||
print(f'|{"-"*35}|')
|
print(f'|{"-"*78}|')
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Reference in New Issue