How to use the ipyfilechooser.utils.get_subpaths function in ipyfilechooser

To help you get started, we’ve selected a few ipyfilechooser examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github crahan / ipyfilechooser / ipyfilechooser / filechooser.py View on Github external
# box from automatically triggering a new event.
        self._pathlist.unobserve(
            self._on_pathlist_select,
            names='value'
        )
        self._dircontent.unobserve(
            self._on_dircontent_select,
            names='value'
        )
        self._filename.unobserve(
            self._on_filename_change,
            names='value'
        )

        # Set form values
        self._pathlist.options = get_subpaths(path)
        self._pathlist.value = path
        self._filename.value = filename

        # file/folder real names
        dircontent_real_names = get_dir_contents(
            path,
            hidden=self._show_hidden,
            prepend_icons=False
        )

        # file/folder display names
        dircontent_display_names = get_dir_contents(
            path,
            hidden=self._show_hidden,
            prepend_icons=self._use_dir_icons
        )

ipyfilechooser

Python file chooser widget for use in Jupyter/IPython in conjunction with ipywidgets

MIT
Latest version published 3 years ago

Package Health Score

46 / 100
Full package analysis

Similar packages