
# Python at GlobalSino:
# https://www.globalsino.com/ICs/
# Open files

import os

# To open the file: C:\GlobalSino2\images\TestScreenshot.png
Path = "C:\GlobalSino2\images"

# os.path.join(dir_name, base_filename + "." + filename_suffix)
os.startfile(os.path.join(Path, "TestScreenshot" + "." + "png"))



