Unable to write output from os.path.walk to a file.

P

Paul Lemelle

I Am trying to output the os.path.walk to a file, but the writelines method complains....

Below is the code, any helpful suggestions would be appreciated.

def visit(arg, dirnames, names):
print dirnames




dirinput = raw_input("Enter directory to read: ")

listdir = os.path.walk (dirinput, visit, None)

f = open("walktxt", "w")

f.writelines(listdir)

f.close()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top