Dir returns the directory this file is in
()
| 720 | |
| 721 | // Dir returns the directory this file is in |
| 722 | func (f *File) Dir() *Dir { |
| 723 | f.mu.RLock() |
| 724 | defer f.mu.RUnlock() |
| 725 | return f.d |
| 726 | } |
| 727 | |
| 728 | // VFS returns the instance of the VFS |
| 729 | func (f *File) VFS() *VFS { |
no outgoing calls