mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2025-12-17 19:24:19 +08:00
improve zh2tw.go
This commit is contained in:
16
zh2tw.go
16
zh2tw.go
@@ -25,8 +25,11 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
"regexp"
|
||||
"unicode/utf8"
|
||||
)
|
||||
|
||||
const MaxFileSize = 8 << 20 // 8MB
|
||||
|
||||
const usage = `
|
||||
Usage: zh2tw dir [nameFilter]
|
||||
zh2tw -h
|
||||
@@ -79,8 +82,8 @@ func main() {
|
||||
if mathed {
|
||||
if changed := convertFile(path, method); changed {
|
||||
fmt.Printf("%s\n", relpath)
|
||||
total++
|
||||
}
|
||||
total++
|
||||
}
|
||||
return nil
|
||||
})
|
||||
@@ -93,10 +96,21 @@ func convertFile(path, method string) (changed bool) {
|
||||
log.Fatal("convertFile: filepath.Abs:", err)
|
||||
}
|
||||
|
||||
fi, err := os.Lstat(abspath)
|
||||
if err != nil {
|
||||
log.Fatal("convertFile: os.Lstat:", err)
|
||||
}
|
||||
if fi.Size() > MaxFileSize {
|
||||
return false
|
||||
}
|
||||
|
||||
oldData, err := ioutil.ReadFile(abspath)
|
||||
if err != nil {
|
||||
log.Fatal("convertFile: ioutil.ReadFile:", err)
|
||||
}
|
||||
if !utf8.Valid(oldData) {
|
||||
return false
|
||||
}
|
||||
|
||||
newData := oldData
|
||||
switch {
|
||||
|
||||
Reference in New Issue
Block a user