path.exists() is returning False

I'm building a basic file server and my program cannot find files. def sendfile(sock, myfile): print 'Serving file:', myfile print 'File exists?:', os.path.exists(myfile) path = os.p...