os/file: add file.Chmod

Signed-off-by: leongross <leon.gross@9elements.com>
This commit is contained in:
leongross
2025-02-14 17:15:41 +01:00
committed by Ron Evans
parent c1b267a208
commit 2d17dec7bf
4 changed files with 34 additions and 0 deletions
+4
View File
@@ -149,3 +149,7 @@ func (f *File) Truncate(size int64) (err error) {
return Truncate(f.name, size)
}
func (f *File) chmod(mode FileMode) error {
return ErrUnsupported
}