(path string)
| 107 | } |
| 108 | |
| 109 | func (d *defaultFileSystem) ReadFile(path string) ([]byte, error) { |
| 110 | return afero.ReadFile(d.afs, path) |
| 111 | } |
| 112 | |
| 113 | func (d *defaultFileSystem) MkdirAll(path string, perm fs.FileMode) error { |
| 114 | return d.ops.MkdirAllWithPerm(path, perm) |