import os def uuri(asukoht): print(asukoht) if(os.path.isdir(asukoht)): for nimetus in os.listdir(asukoht): uuri(asukoht+"/"+nimetus) uuri(".")