Files
openvino/docs/scripts/remove_xml.py
2022-01-19 01:07:49 +03:00

26 lines
470 B
Python

# Copyright (C) 2018-2022 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
import os
import shutil
def remove_xml_dir(path):
"""
Remove doxygen xml folder
"""
if os.path.exists(path):
shutil.rmtree(path, ignore_errors=True)
def main():
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('xml_dir')
args = parser.parse_args()
remove_xml_dir(args.xml_dir)
if __name__ == '__main__':
main()