(path string)
| 44 | } |
| 45 | |
| 46 | func (m *MemFS) GetFileOwner(path string) (FileOwner, bool) { |
| 47 | owner, ok := m.Owner[path] |
| 48 | return owner, ok |
| 49 | } |
| 50 | |
| 51 | // LStat doesn't follow symbolic links since this is a in-mem fake. |
| 52 | func (m *MemFS) LStat(path string) (fs.FileInfo, error) { |