Add remove for filemanager

This commit is contained in:
世界 2023-11-05 15:28:49 +08:00
parent 38cdffccc5
commit 81c1436b69
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 28 additions and 0 deletions

View file

@ -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] == ':' {

View file

@ -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 {