コード例 #1
0
def get_directory_name_input(prompt, default_name=""):
    value = ctypes.c_char_p()
    if not core.BNGetDirectoryNameInput(value, prompt, default_name):
        return None
    result = value.value
    core.BNFreeString(ctypes.cast(value, ctypes.POINTER(ctypes.c_byte)))
    return result
コード例 #2
0
def get_directory_name_input(prompt, default_name=""):
	"""
	``get_directory_name_input`` prompts the user for a directory name to save as, optionally providing a default_name.

	Note: This API function differently on the command line vs. the UI. In the UI a popup is used. On the commandline a simple text prompt is used. The ui uses the native window popup for file selection.

	:param str prompt: Prompt to display.
	:param str default_name: Optional, default directory name.
	:rtype: str
	:Example:
		>>> get_directory_name_input("prompt")
		prompt dirname
		'dirname'
	"""
	value = ctypes.c_char_p()
	if not core.BNGetDirectoryNameInput(value, prompt, default_name):
		return None
	result = value.value
	core.BNFreeString(ctypes.cast(value, ctypes.POINTER(ctypes.c_byte)))
	return result