Answers for "file human readable with specific size"

1

python get human readable file size

def human_readable_size(size, decimal_places=3):
    for unit in ['B','KiB','MiB','GiB','TiB']:
        if size < 1024.0:
            break
        size /= 1024.0
    return f"{size:.{decimal_places}f}{unit}"
Posted by: Guest on January-22-2020
1

ls human readable size

du -sh directory_name    #Gives you the summarized(-s) size of the directory in human readable(-h) format
du -bsh *                #Gives you the apparent(-b) summarized(-s) size of all the files and directories in the current directory in human readable(-h) format
Posted by: Guest on July-04-2020

Code answers related to "file human readable with specific size"

Python Answers by Framework

Browse Popular Code Answers by Language