(name string)
| 649 | func (fs directFS) Remove(name string) error { return os.Remove(fs.path(name)) } |
| 650 | |
| 651 | func (fs directFS) ReadFile(name string) ([]byte, error) { |
| 652 | return os.ReadFile(fs.path(name)) |
| 653 | } |
| 654 | |
| 655 | func (fs directFS) Truncate(name string) error { |
| 656 | return os.Truncate(fs.path(name), 0) |