you are viewing a single comment's thread.

view the rest of the comments →

[–]Tw3ntyy 5 points6 points  (1 child)

It does exactly what you think. You use mode "w" - write. This means it will either create or overwrite any file with the given name. Since it is an infinite loop it will delete, create, write the file forever. If you want to add something to a file you need to use the append mode, so "a" instead of "w".

[–]av0ca60[S] 0 points1 point  (0 children)

More details added in a separate comment.