Python | shutil.disk_usage() method Last Updated : 20 Jun, 2019 Comments Improve Suggest changes Like Article Like Report Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Python’s standard utility modules. This module helps in automating process of copying and removal of files and directories. shutil.disk_usage() method tells the disk usage statistics about the given path as a named tuple with the attributes total, used and free where total represents total amount of memory, used represents used memory and free represents free memory. Note: All the memory values are in bytes. Syntax: shutil.disk_usage(path) Parameter: path: A string representing the path. Return Value: This method returns a named tuple with the attributes total, used and free which are the amount of total, used and free space, in bytes Example #1 : Using shutil.disk_usage() method to know about memory usage statistics of GeeksforGeeks server. Python3 # Python program to explain shutil.disk_usage() method # importing os module import os # importing shutil module import shutil # path # As the path for GFG is root so '/' is used path = '/' # Using shutil.disk_usage() method memory = shutil.disk_usage(path) # Print result print(memory) Output: usage(total=51976970240, used=27151167488, free=24809025536) Example #2 : Using shutil.disk_usage() method to know about memory usage statistics of any user Computer. Python3 # Python program to explain shutil.disk_usage() method # importing os module import os # importing shutil module import shutil # path path = 'C:/Users/User_name/GeeksforGeeks' # Using shutil.disk_usage() method memory = shutil.disk_usage(path) # Print result print(memory) Output: usage(total=209190907904, used=92728918016, free=116461989888) Comment More infoAdvertise with us Next Article Python | shutil.disk_usage() method R Rajnis09 Follow Improve Article Tags : Python Python-shutil Practice Tags : python Similar Reads Python | shutil.unpack_archive() method Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Pythonâs standard utility modules. This module helps in automating process of copying and removal of files and directories.shutil.unpack_archive() method in Python is used to un 2 min read Python | shutil.copy() method Python3 # Python program to explain shutil.copy() method # importing shutil module import shutil # Source path source = "/home/User/Documents/file.txt" # Destination path destination = "/home/User/Documents/file.txt" # Copy the content of # source to destination try: shutil.copy( 5 min read Python | shutil.which() method Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Pythonâs standard utility modules. This module helps to automate the process of copying and removal of files and directories. shutil.which() method tells the path to an executab 2 min read Python | shutil.chown() method Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Pythonâs standard utility modules. This module helps in automating process of chowning and removal of files and directories.shutil.chown() method in Python is used to change the 3 min read Python | shutil.copy2() method Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Pythonâs standard utility modules. This module helps in automating process of copying and removal of files and directories.shutil.copy2() method in Python is used to copy the co 4 min read Python | shutil.copyfile() method Shutil module in Python helps automate the process of copying and removing files and directories. It comes under Pythonâs standard utility modules. Shutil(short for shell utility) module also provides many functions of high-level operations on files and collections of files. What is Shutil.copyfile 4 min read Python | shutil.copystat() method Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Pythonâs standard utility modules. This module helps in automating process of copying and removal of files and directories.shutil.copystat() method in Python is used to copy the 3 min read Python | shutil.copymode() method Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Pythonâs standard utility modules. This module helps in automating the process of copying and removal of files and directories.shutil.copymode() method in Python is used to copy 2 min read Python | shutil.move() method Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Pythonâs standard utility modules. This module helps in automating the process of copying and removing files and directories. The shutil.move() method moves a file or directory 2 min read Python | shutil.get_unpack_formats() method Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Pythonâs standard utility modules. This module helps in automating process of copying and removal of files and directories. shutil.get_unpack_formats() method in Python is used 2 min read Like