ARTICLE AD BOX
When a program like VS Code or any other program opens a file, let’s say it is a Python file, it loads it from the hard drive into RAM. Is it possible for another program to change the Python file that is open in RAM without changing it on the hard drive? For example, could someone insert a line of code into the Python file in RAM WHILE the interpreter is running? If this is possible, would a compiled language be more resistant to this action?
Thanks in advance.
