| 111 | } |
| 112 | |
| 113 | bool IsABFSPath(const char* path, bool check_default_fs) { |
| 114 | return IsSpecificPath(path, FILESYS_PREFIX_ABFS, check_default_fs) |
| 115 | || IsSpecificPath(path, FILESYS_PREFIX_ABFS_SEC, check_default_fs); |
| 116 | } |
| 117 | |
| 118 | bool IsADLSPath(const char* path, bool check_default_fs) { |
| 119 | return IsSpecificPath(path, FILESYS_PREFIX_ADL, check_default_fs); |
no test coverage detected