0

I already know how to add a filepath selection to my N-Panel UI thanks to this: Python Panel Dropdownlist and Integer Button But how do I access the selected path? I would love to print out the selected path.

BlackCube
  • 75
  • 4
  • 1
    ... the example above prints the path to the console and shows how to access the value (the actual path) of your property. Further reading: https://blender.stackexchange.com/questions/57306/how-to-create-a-custom-ui – brockmann Jun 09 '21 at 17:34

1 Answers1

-1

After the lines:

col.prop(placeholder, "inc_dec_int", text="Increment/Decrease")
        col.prop(placeholder, "dropdown_box", text="Dropdown")
        col.prop(placeholder, "file_path", text="Filepath")

Add:

print(placeholder["file_path"])

To print the selected file-path of the file-browser.

RPaladin
  • 1,235
  • 1
  • 5
  • 17