Files
openvino/docs/scripts/remove_xml.py
Artyom Anokhov 358efd2d06 Updated copyrights with 2023 year (#15148)
* Updated copyrights with 2023 year.

* Updated more files
2023-02-02 16:48:28 +01:00

25 lines
469 B
Python

# Copyright (C) 2018-2023 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()