Documentation ¶
Index ¶
- func CopyDir(src string, dst string) (err error)
- func CopyFile(source string, target string) error
- func DeleteFile(filename string) error
- func DirExists(path string) bool
- func DirIsEmpty(dir string) (bool, error)
- func FileExists(path string) bool
- func GetSubdirectories(rootDir string) (*slicer.StringSlicer, error)
- func LocalDirectory() string
- func MD5File(filename string) (string, error)
- func MkDirs(fullPath string, mode ...os.FileMode) error
- func Mkdir(dirname string) error
- func MoveFile(source string, target string) error
- func MustLoadString(filename string) string
- func MustMD5File(filename string) string
- func MustWriteString(filename string, data string)
- func RelativePath(relativepath string, optionalpaths ...string) string
- func RelativeToCwd(relativePath string) (string, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CopyDir ¶
Credit: https://gist.github.com/r0l1/92462b38df26839a3ca324697c8cba04 CopyDir recursively copies a directory tree, attempting to preserve permissions. Source directory must exist, destination directory must *not* exist. Symlinks are ignored and skipped.
func DirExists ¶
DirExists - Returns true if the given path resolves to a directory on the filesystem
func DirIsEmpty ¶
func FileExists ¶
FileExists returns a boolean value indicating whether the given file exists
func GetSubdirectories ¶
func GetSubdirectories(rootDir string) (*slicer.StringSlicer, error)
GetSubdirectories returns a list of subdirectories for the given root directory
func LocalDirectory ¶
func LocalDirectory() string
LocalDirectory gets the caller's file directory Equivalent to node's __DIRNAME
func MoveFile ¶
MoveFile attempts to move the source file to the target Target is a fully qualified path to a file *name*, not a directory
func MustLoadString ¶
MustLoadString attempts to load a string and will abort with a fatal message if something goes wrong
func MustMD5File ¶
MustMD5File will call MD5File and abort the program on error
func MustWriteString ¶
MustWriteString will attempt to write the given data to the given filename It will abort the program in the event of a failure
func RelativePath ¶
RelativePath returns a qualified path created by joining the directory of the calling file and the given relative path.
Example: RelativePath("..") in *this* file would give you '/path/to/wails2/v2/internal`
func RelativeToCwd ¶
RelativeToCwd returns an absolute path based on the cwd and the given relative path
Types ¶
This section is empty.