Open Bovive opened 2 months ago
For Windows deployments the "Browse Folder Path" button on the Scan Management pages will show the root of drive configured in config.py ()
Default: BASE_FOLDER_WINDOWS = os.getenv('BASE_FOLDER_WINDOWS', 'C:')
BASE_FOLDER_WINDOWS = os.getenv('BASE_FOLDER_WINDOWS', 'C:')
It would be nice to be able to display all drives and network drives. This might require using Python 3.12 and accessing the new os.listdrives() or os.listmounts() functions (Reference).
For Windows deployments the "Browse Folder Path" button on the Scan Management pages will show the root of drive configured in config.py ()
Default:
BASE_FOLDER_WINDOWS = os.getenv('BASE_FOLDER_WINDOWS', 'C:')
It would be nice to be able to display all drives and network drives. This might require using Python 3.12 and accessing the new os.listdrives() or os.listmounts() functions (Reference).