Hello, I want open file or delete file or create directory...... .... using python.
Thanks.
You can open a file by doing this:
[code=python]
myfile = open("C:\\myfil e.txt")
[/code]
For other stuff having to do with files and directories try the os module .
Comment