I\'m trying to create a folder and create a file within it.
Whenever i create that folder (via Python), it creates a folder that gives me no permissions at all and r
You've probably got a funky umask. Try os.umask(0002) before making your directory.
os.umask(0002)