Node that Open file in Explorer?

Hi all,

I used in the past a node that opens a file in explorer, like a text file would open in Notepad.

But i cannot find it anymore…

Thank you

I dunno if there’s a node for it, but it’s a couple lines in python.

import os
path = IN[0]
os.startfile(path)
1 Like