mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Add remove for filemanager
This commit is contained in:
parent
38cdffccc5
commit
81c1436b69
2 changed files with 28 additions and 0 deletions
|
@ -154,6 +154,16 @@ func (m *defaultManager) MkdirAll(path string, perm os.FileMode) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (m *defaultManager) Remove(path string) error {
|
||||
path = m.BasePath(path)
|
||||
return os.Remove(path)
|
||||
}
|
||||
|
||||
func (m *defaultManager) RemoveAll(path string) error {
|
||||
path = m.BasePath(path)
|
||||
return os.RemoveAll(path)
|
||||
}
|
||||
|
||||
func fixRootDirectory(p string) string {
|
||||
if len(p) == len(`\\?\c:`) {
|
||||
if os.IsPathSeparator(p[0]) && os.IsPathSeparator(p[1]) && p[2] == '?' && os.IsPathSeparator(p[3]) && p[5] == ':' {
|
||||
|
|
|
@ -14,6 +14,8 @@ type Manager interface {
|
|||
CreateTemp(pattern string) (*os.File, error)
|
||||
Mkdir(path string, perm os.FileMode) error
|
||||
MkdirAll(path string, perm os.FileMode) error
|
||||
Remove(path string) error
|
||||
RemoveAll(path string) error
|
||||
}
|
||||
|
||||
func BasePath(ctx context.Context, name string) string {
|
||||
|
@ -64,6 +66,22 @@ func MkdirAll(ctx context.Context, path string, perm os.FileMode) error {
|
|||
return manager.MkdirAll(path, perm)
|
||||
}
|
||||
|
||||
func Remove(ctx context.Context, path string) error {
|
||||
manager := service.FromContext[Manager](ctx)
|
||||
if manager == nil {
|
||||
return os.Remove(path)
|
||||
}
|
||||
return manager.Remove(path)
|
||||
}
|
||||
|
||||
func RemoveAll(ctx context.Context, path string) error {
|
||||
manager := service.FromContext[Manager](ctx)
|
||||
if manager == nil {
|
||||
return os.RemoveAll(path)
|
||||
}
|
||||
return manager.RemoveAll(path)
|
||||
}
|
||||
|
||||
func WriteFile(ctx context.Context, name string, data []byte, perm os.FileMode) error {
|
||||
manager := service.FromContext[Manager](ctx)
|
||||
if manager == nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue