Files
BUGPy-mOS-0/scripts/make_file/make_file.py
2026-04-24 08:42:19 -04:00

10 lines
242 B
Python

from pathlib import Path
def main(args):
for target in args:
path = Path(target)
if path.exists():
print(f'"{target}" already exists.')
continue
path.write_text("") # Pure creation