File Manipulation
Easy file manipulation
from pathlib import Path
random_file = Path("random_file.txt")
random_file.exists()
# False
random_file.touch()
random_file.exists()
# True
from pathlib import Path
random_file = Path("random_file.txt")
random_file.exists()
# False
random_file.touch()
random_file.exists()
# True