Python script to add Obsidian tag to files.
import argparse import os import sys def getFiles(_path,_ext,_debug): rtn_list = [] if (_debug > 0): print(f" getFiles({_path},{_ext},{_debug})") list_dir = os.listdir(_path) if not list_dir: print(" **getFiles returned nothing **") else: for…