| 116 | } |
| 117 | |
| 118 | bool IsADLSPath(const char* path, bool check_default_fs) { |
| 119 | return IsSpecificPath(path, FILESYS_PREFIX_ADL, check_default_fs); |
| 120 | } |
| 121 | |
| 122 | bool IsOSSPath(const char* path, bool check_default_fs) { |
| 123 | return IsSpecificPath(path, FILESYS_PREFIX_OSS, check_default_fs) |
no test coverage detected