Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrInvalid = fs.ErrInvalid // "invalid argument" ErrPermission = fs.ErrPermission // "permission denied" ErrExist = fs.ErrExist // "file already exists" ErrNotExist = fs.ErrNotExist // "file does not exist" ErrClosed = fs.ErrClosed // "file already closed" )
View Source
var ( // SkipAll is [fs.SkipAll]. SkipAll = fs.SkipAll //nolint:errname // SkipDir is [fs.SkipDir]. SkipDir = fs.SkipDir //nolint:errname )
Functions ¶
This section is empty.
Types ¶
type FS ¶
type FS interface {
// UseCaseSensitiveFileNames returns true if the file system is case-sensitive.
UseCaseSensitiveFileNames() bool
// FileExists returns true if the file exists.
FileExists(path string) bool
// ReadFile reads the file specified by path and returns the content.
// If the file fails to be read, ok will be false.
ReadFile(path string) (contents string, ok bool)
WriteFile(path string, data string) error
// AppendFile appends data to the file at path, creating it if it does not exist.
AppendFile(path string, data string) error
// Removes `path` and all its contents. Will return the first error it encounters.
Remove(path string) error
// Chtimes changes the access and modification times of the named
Chtimes(path string, aTime time.Time, mTime time.Time) error
// DirectoryExists returns true if the path is a directory.
DirectoryExists(path string) bool
// GetAccessibleEntries returns the files/directories in the specified directory.
// If any entry is a symlink, it will be followed.
GetAccessibleEntries(path string) Entries
Stat(path string) FileInfo
// WalkDir walks the file tree rooted at root, calling walkFn for each file or directory in the tree.
// It is has the same behavior as [fs.WalkDir], but with paths as [string].
WalkDir(root string, walkFn WalkDirFunc) error
// Realpath returns the "real path" of the specified path,
// following symlinks and correcting filename casing.
Realpath(path string) string
}
FS is a file system abstraction.
Directories
¶
| Path | Synopsis |
|---|---|
|
Package trackingvfs provides a VFS wrapper that records every file path accessed during compilation.
|
Package trackingvfs provides a VFS wrapper that records every file path accessed during compilation. |
|
This package implements a polling-based file watcher designed for use by both the CLI watcher and the language server.
|
This package implements a polling-based file watcher designed for use by both the CLI watcher and the language server. |
Click to show internal directories.
Click to hide internal directories.