Skip to content

Nuke copy path tools

Used to copy all path of selected read nodes.

Scripts

python
copy_path.py

def copy_path(reverse_slash=False):
    """
    Copies the file path of the selected Read nodes to the clipboard.

    :param reverse_slash: If True, replaces forward slashes with backslashes.
    :type reverse_slash: bool
    """
    reads = [node for node in nuke.allNodes("Read") if node in nuke.selectedNodes()]
    paths = []
    for read in reads:
        file_path = read["file"]
        file_path = file_path.evaluate()
        paths.append(file_path)
    
    if reverse_slash:
        paths = [path.replace("/", "\\") for path in paths]
    
    text = "\n".join(paths)
    QtGui.QApplication.clipboard().setText(text)

Usage in Menu.py

python
menu.py

nuke.menu("myCustomMenu").addCommand("CopyPath", "from copy_path import copy_path;copy_path()", 'ctrl+alt+shift+c')
nuke.menu("myCustomMenu").addCommand("CopyPathWindows", "from copy_path import copy_path;copy_path(reverse_slash=True)", 'ctrl+shift+c')