When I execute the function listdir() to get file list, if there is a path in url, the method will return an extra path name.
There is a test directory in my root path:

My code attempts to obtain a list of files in the test directory:
url = 'http://localhost:6666/test'
handle = WebDAVFS(url, login='admin', password='admin')
test = handle.listdir('./')
print(list(test))
I expected to only get 'c.txt' and 'd. txt', but now I will get an extra 'test':
