Judging by the "Draw Menu" line, my guess is that it's a menubar extension or status control of some kind. The fact that it's concerned with network interfaces suggests something related to the network or internet. This includes things like Little Snitch, or possibly even VPNs.
If we assume that whatever process is writing to the file is keeping it open the whole time, then the following command line pasted into a Terminal window might show it:
The 'lsof' command lists every open file descriptor, and what file it refers to. That output is then run through 'grep' which outputs only the lines that contain the string "/Documents/". That is, it outputs only the lines which refer to files in a Documents folder.
If you have something like Preview or TextEdit open, it may well list files it has open. Quit as many apps as possible to limit the amount of irrelevance.
Please copy and paste the output into a post here.
The 'grep' removes the heading from 'lsof' that labels the columns. Here's how to get that on a line by itself:
You can drag-select to select text in a Terminal window, then copy it to the clipboard. Paste into a text file along with the prior output and you should have column labels on the output.
It's possible the output from the first command lists nothing.
To expand the output from 'lsof' to include every process, not just those owned by the current user, try this command:
Code:
sudo lsof | grep /Documents/
It will ask for the password of your account, and it WILL NOT echo anything as you type it in. Simply type it in and press the Return key.
Because the 'lsof' output is much larger, it may take noticeably longer to run than before. A few seconds isn't unusual, compared to a fraction of a second before.
If you get an error message from any of the commands, please post the complete exact text of the message.