Files
openvino/docs/scripts/remove_xml.py
Ilya Churaev 0c9abf43a9 Updated copyright headers (#15124)
* Updated copyright headers

* Revert "Fixed linker warnings in docs snippets on Windows (#15119)"

This reverts commit 372699ec49.
2023-01-16 11:02:17 +04: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()