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
@@ -142,3 +142,7 @@ func isWindowsNulName(name string) bool {
}
return true
}
func (f *File) chmod(mode FileMode) error {
return ErrNotImplemented
}