I have a Python file running on macOS which calls touch in the following ways:
os.system("touch -c %s" % apicache_file)
os.system("touch -c %s" % downloadFilename)
os.system("touch -c %s" % meta_cache_file)
However, I need to run the script on a Windows machine. How can I modify the script or the system to allow this to be done? Otherwise, I receive the following error:
'touch' is not recognized as an internal or external command, operable program or batch file