I get the warning
"Warning: To avoid potential deadlock, operations that may block, such as networking, should be performed in a different thread than the commandAction() handler." It starts when I start to access the file system, more specific when I try to list the roots with listRoot(). I know this would be fixed with threading but I am not so good at it. I did do some tries but without success.
Should I move all my filesystem methods into some threaded class or just parts of it? Please guide me into the right direction.