Answers for "run the same python script along every file in a directory"

0

python open file same folder

import os
with open(os.path.join(sys.path[0], "my_file.txt"), "r") as f:
    print(f.read())
Posted by: Guest on June-10-2020

Code answers related to "run the same python script along every file in a directory"

Python Answers by Framework

Browse Popular Code Answers by Language