Tuesday, July 28, 2026
HomeLanguagesPython | shutil.unregister_archive_format() method

Python | shutil.unregister_archive_format() 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.unregister_archive_format() method in Python is used to unregister or remove an archive format from the list of available supported archive formats.

We can also register a new format or specify own function for archiving existing formats using shutil.register_archive_format() method or get the list of all supported available archive format using shutil.get_archive_formats() method.

Syntax: shutil.unregister_archive_format(name)

Parameter:
name: A string representing the name of the archive format which is to be removed from the list.

Return Type: This method does not return any value.

Code: Use of shutil.unregister_archive_format() method




# Python program to explain shutil.unregister_archive_format() method  
    
# importing shutil module 
import shutil
  
# Get the list of 
# supported archive formats
formats = shutil.get_archive_formats()
  
# Print the list
print("Supported archive formats:")
print(formats, "\n")
  
# Remove an archive format
name = "bztar"
shutil.unregister_archive_format(name)
print("'% s' archive format unregistered successfully." % name, "\n")
  
# Get the list of 
# supported archive formats
formats = shutil.get_archive_formats()
  
# Print the list
print("Supported archive formats:")
print(formats, "\n")


Output:

Supported archive formats:
[(‘bztar’, [‘.tar.bz2’, ‘.tbz2’], “bzip2’ed tar-file”), (‘gztar’, [‘.tar.gz’, ‘.tgz’], “gzip’ed tar-file”), (‘tar’, [‘.tar’], ‘uncompressed tar file’), (‘xztar’, [‘.tar.xz’, ‘.txz’], “xz’ed tar-file”), (‘zip’, [‘.zip’], ‘ZIP file’)]

‘bztar’ archive format unregistered successfully.

Supported archive formats:
[(‘gztar’, “gzip’ed tar-file”), (‘tar’, ‘uncompressed tar file’), (‘xztar’, “xz’ed tar-file”), (‘zip’, ‘ZIP file’)]

Reference: https://docs.python.org/3/library/shutil.html

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6972 POSTS0 COMMENTS