Open In App

Python | shutil.unregister_archive_format() method

Last Updated : 07 Jun, 2019
Improve
Improve
Like Article
Like
Save
Share
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 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


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads