Go實現尋找目錄下(包括子目錄)替換檔案內容

來源:互聯網
上載者:User

標籤:blog   os   檔案   io   re   c   

 

【功能】

    按指定的目錄尋找出檔案,如果有子目錄,子目錄也將進行搜尋,將其中的檔案內容進行替換。

【缺陷】

    1. 沒有過濾出文字檔

    2. 當檔案過大時,效率不高

【代碼】

package mainimport ("flag""fmt""io/ioutil""os""path/filepath""strings")type ReplaceHelper struct {Root    string //根目錄OldText string //需要替換的文本NewText string //新的文本}func (h *ReplaceHelper) DoWrok() error {return filepath.Walk(h.Root, h.walkCallback)}func (h ReplaceHelper) walkCallback(path string, f os.FileInfo, err error) error {if err != nil {return err}if f == nil {return nil}if f.IsDir() {//fmt.Pringln("DIR:",path)return nil}//檔案類型需要進行過濾buf, err := ioutil.ReadFile(path)if err != nil {//errreturn err}content := string(buf)//替換newContent := strings.Replace(content, h.OldText, h.NewText, -1)//重新寫入ioutil.WriteFile(path, []byte(newContent), 0)return err}func main() {flag.Parse()helper := ReplaceHelper{Root:    flag.Arg(0),OldText: flag.Arg(1),NewText: flag.Arg(2),}err := helper.DoWrok()if err == nil {fmt.Println("done!")} else {fmt.Println("error:", err.Error())}}

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.