Remove bad rw usages

This commit is contained in:
世界 2024-06-23 21:07:23 +08:00
parent d8ec9c46cc
commit e0196407a3
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 74 additions and 62 deletions

View file

@ -44,7 +44,7 @@ func (m *defaultManager) BasePath(name string) string {
func (m *defaultManager) OpenFile(name string, flag int, perm os.FileMode) (*os.File, error) {
name = m.BasePath(name)
willCreate := flag&os.O_CREATE != 0 && !rw.FileExists(name)
willCreate := flag&os.O_CREATE != 0 && !rw.IsFile(name)
file, err := os.OpenFile(name, flag, perm)
if err != nil {
return nil, err