(ctx context.Context, path string)
| 2024 | } |
| 2025 | |
| 2026 | func (dfs *DirectoryStatFS) Stat(ctx context.Context, path string) (string, *Stat, error) { |
| 2027 | return CallDirStat(ctx, dfs.Dir, path) |
| 2028 | } |
| 2029 | |
| 2030 | func (dfs *DirectoryStatFS) Exists(ctx context.Context, path string) (string, bool, error) { |
| 2031 | return CallDirExists(ctx, dfs.Dir, path) |
nothing calls this directly
no test coverage detected