mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Remove bad rw usages
This commit is contained in:
parent
d8ec9c46cc
commit
e0196407a3
6 changed files with 74 additions and 62 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue