david balli
10/29/2024, 10:39 AMuser
10/29/2024, 10:39 AM**/*.xlsx
would match all Excel files in the folder. Here are some example patterns: - **
: match everything. - **/*.xlsx
: match all Excel files. - myFolder/**/*.xlsx
: match all Excel files anywhere under myFolder. - */**
: match everything at least one folder deep. - */*/*/**
: match everything at least three folders deep. - **/file.*|**/file
: match every file called "file" with any extension (or no extension). - x/*/y/*
: match all files that sit in sub-folder x -> any folder -> folder y. - **/prefix*.xlsx
: match all Excel files with a specific prefix. Please note that each path pattern is a reference from the root of the folder, so don't include the root folder name itself in the pattern(s). Sources: - [Microsoft OneDrive](https://docs.airbyte.com/integrations/sources/microsoft-onedrive#path-patterns) - [Microsoft SharePoint](https://docs.airbyte.com/integrations/sources/microsoft-sharepoint#path-patterns) - [Google Cloud Storage (GCS)](https://docs.airbyte.com/integrations/sources/gcs#path-patterns) - [Azure Blob Storage](https://docs.airbyte.com/integrations/sources/azure-blob-storage#path-patterns) - [S3](https://docs.airbyte.com/integrations/sources/s3#globs) - [Google Drive](https://docs.airbyte.com/integrations/sources/google-drive#path-patterns)