How to change for always the order of panels in the file selector?

In the file selector you have the left panel like that:
Bookmarks
System
Volumes
Recent

But I need this order:
Bookmarks
Recent
System
Volumes

Ok I found myself:
In Preferences in Save & Load , I deselect System in “File Browser” panel.

and in blender-4.2.3\4.2\scripts\startup\bl_ui\space_filebrowser.py
In line #235:

    def poll(cls, context):
        #return panel_poll_is_upper_region(context.region) and not panel_poll_is_asset_browsing(context)
        return False

I return false to not display Volumes panel

All is ok now! Only Boukmarks + Recent
Make these changes if you know what you make :slight_smile:

Glad you find a solution, alternatevely a ‘softer’ one is that you can change their order just dragging them in you favorite position using :::: button on top right of each panel (and, if you want, keep them collapsed)