我在我的應(yīng)用程序中嵌入了一些文件并使用embed.FS. 在某些時(shí)候我fs.Glob(embedFS, ...)在我的代碼中使用。一切都按預(yù)期工作?,F(xiàn)在我需要在繼續(xù)處理文件內(nèi)容之前用空格替換換行符。我可以閱讀整個(gè)文件并做類似的事情,bytes.ReplaceAll(...)但我想讓它更好一點(diǎn),而不是在使用我的包時(shí)要求進(jìn)行替換(盡管我可以對用戶隱藏它)。我決定圍繞fs.FS(and fs.File) 實(shí)現(xiàn)一個(gè)包裝器,在讀取文件時(shí)處理替換。但是我的實(shí)現(xiàn)中斷了fs.Glob(),因?yàn)樗鼪]有返回任何匹配項(xiàng):type noLineBreakFile struct { file fs.File}func (f *noLineBreakFile) Stat() (fs.FileInfo, error) { return f.file.Stat()}func (f *noLineBreakFile) Read(p []byte) (n int, err error) { n, err = f.file.Read(p) pp := bytes.ReplaceAll(p, []byte{'\n'}, []byte{' '}) copy(p, pp) return}func (f *noLineBreakFile) Close() error { return f.file.Close()}type noLineBreakFS struct { fs fs.FS}func (fs *noLineBreakFS) Open(name string) (fs.File, error) { f, err := fs.fs.Open(name) if err != nil { return nil, err } return &noLineBreakFile{f}, nil // <- returning f without the wrapper works fine}//go:embed *.tmplvar embedFS embed.FSfunc main() { matches, err := fs.Glob(embedFS) // Works fine ... fmt.Println(matches, err) matches, err = fs.Glob(&noLineBreakFS{embedFS}) // No matches! fmt.Println(matches, err)}我執(zhí)行fs.File( noLineBreakFile) 有什么問題?
1 回答

青春有我
TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超8個(gè)贊
實(shí)施ReadDirFile以便 Glob 可以讀取目錄條目。
func (nfs *noLineBreakFS) ReadDir(name string) ([]fs.DirEntry, error) { return fs.ReadDir(nfs.fs, name) }
- 1 回答
- 0 關(guān)注
- 101 瀏覽
添加回答
舉報(bào)
0/150
提交
取消