您可以使用以下 Go 代码来实现将指定文件夹中的所有配置文件重命名为带有”.bak”后缀的新文件名:
package main
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
)
func main() {
configFolderPath := "ConfigFilePath" // 指定配置文件夹路径
files, err := ioutil.ReadDir(configFolderPath)
if err != nil {
fmt.Println("Error reading directory:", err)
return
}
for _, file := range files {
if !file.IsDir() && strings.HasSuffix(file.Name(), ".conf") { // 只处理.conf结尾的配置文件
oldFilePath := filepath.Join(configFolderPath, file.Name())
newFileName := file.Name() + ".bak"
newFilePath := filepath.Join(configFolderPath, newFileName)
err := os.Rename(oldFilePath, newFilePath)
if err != nil {
fmt.Printf("Error renaming %s: %v\n", oldFilePath, err)
} else {
fmt.Printf("Renamed %s to %s\n", oldFilePath, newFilePath)
}
}
}
}
在这段代码中,您需要将"ConfigFilePath"
替换为您想要操作的目标文件夹路径。该程序会遍历指定文件夹中所有以.conf
结尾的配置文件,并将它们重命名为原文件名加上.bak
后缀。
内容由零声教学AI助手提供,问题来源于学员提问