python env mac can't find file directory code example
Example 1: how to find a file in linux terminal
find /path/to/folder/ -iname *file_name_portion*
Example 2: create text file in directory python linux
import os.path
f = open(os.path.expanduser(os.path.join("~/Desktop",boyka + ".txt")), "a")