You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I specify serve_from as "/", on Unix-like systems, this will list all top-level subdirectories under the root directory. However, on Windows, it will only list the top-level subdirectories within the disk where the program is located.
On the Windows system, is there any way to make actix-files list all disks?
let app = App::new().service(Files::new("/all-files","/").prefer_utf8(true));