Hi,
Is there a simple dialog FileDialog Command in Blender Python?
In Maya, it simply is:
file_path = cmds.fileDialog()
In C4D, it simply is:
file_path = c4d.storage.LoadDialog()
In Blender, from the template Operator File Export
and Operator File Import
,
I’d have to instance ImportHelper
with the class Operator
, have the operator register/unregister again and so forth.
Does Blender have a single line command like what I listed above?
Regards,
Ben