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 using filterdir or glob with a webdav filesystem errors are raised.
# works as expected
with open_fs("~/Escritorio") as f: print(list(f.filterdir("/", files=["*.pdf"])))
url = "webdavs://[email protected]:443/remote.php/webdav/foo/bar"
# "TypeError: expected string or bytes-like object" is raised
with open_fs(url) as f: print(list(f.filterdir("/", files=["*.pdf"])))
# AttributeError: 'NoneType' object has no attribute 'lstrip'
with open_fs(url) as f: print(list(f.glob("*.pdf")))
# listdir works as expected and show files with pdf extension
The text was updated successfully, but these errors were encountered:
When using
filterdir
orglob
with a webdav filesystem errors are raised.The text was updated successfully, but these errors were encountered: