filesystem_spec icon indicating copy to clipboard operation
filesystem_spec copied to clipboard

A specification that python filesystems should adhere to.

Results 262 filesystem_spec issues
Sort by recently updated
recently updated
newest added

This results in different behaviour vs other glob methods in e.g. glob or pathlib: ``` from fsspec.implementations.local import LocalFileSystem import glob fs = LocalFileSystem() fs.mkdir('original/target_dir') fs.mkdir('new') fs.touch('original/target_dir/example_file.txt') fs.symlink('original/target_dir', 'new/link') print(fs.glob('original/*/example_file.txt'))...

Question: should this call be `on_error="raise"`? `copy` is defined with `on_error` kwarg. https://github.com/fsspec/filesystem_spec/blob/76ca4a68885d572880ac6800f079738df562f02c/fsspec/spec.py#L1186-L1188