12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- // Copyright 2017-2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
- //
- // This Source Code Form is subject to the terms of the MIT License.
- // If a copy of the MIT was not distributed with this file,
- // You can obtain one at https://github.com/gogf/gf.
- package gfile
- import (
- "github.com/gogf/gf/text/gstr"
- )
- // ReplaceFile replaces content for file <path>.
- func ReplaceFile(search, replace, path string) error {
- return PutContents(path, gstr.Replace(GetContents(path), search, replace))
- }
- // ReplaceFileFunc replaces content for file <path> with callback function <f>.
- func ReplaceFileFunc(f func(path, content string) string, path string) error {
- data := GetContents(path)
- result := f(path, data)
- if len(data) != len(result) && data != result {
- return PutContents(path, result)
- }
- return nil
- }
- // ReplaceDir replaces content for files under <path>.
- // The parameter <pattern> specifies the file pattern which matches to be replaced.
- // It does replacement recursively if given parameter <recursive> is true.
- func ReplaceDir(search, replace, path, pattern string, recursive ...bool) error {
- files, err := ScanDirFile(path, pattern, recursive...)
- if err != nil {
- return err
- }
- for _, file := range files {
- if err = ReplaceFile(search, replace, file); err != nil {
- return err
- }
- }
- return err
- }
- // ReplaceDirFunc replaces content for files under <path> with callback function <f>.
- // The parameter <pattern> specifies the file pattern which matches to be replaced.
- // It does replacement recursively if given parameter <recursive> is true.
- func ReplaceDirFunc(f func(path, content string) string, path, pattern string, recursive ...bool) error {
- files, err := ScanDirFile(path, pattern, recursive...)
- if err != nil {
- return err
- }
- for _, file := range files {
- if err = ReplaceFileFunc(f, file); err != nil {
- return err
- }
- }
- return err
- }
|