# Functions
CopyDir copies a directory from src to dst.
CopyFile copies a file from src to dst.
CreateFileFromByteFn creates a file from the functionx that returns a byte slice.
CreateFileFromBytes creates a file from the byte slice.
CreateFileFromReader creates a file from the reader.
CreateFileFromString creates a file from the string.
CreateFileFromWriterFunc creates a file from the functionx that returns a writer.
DeleteDir deletes a directory.
DeleteDirFn executes the functionx if the directory is deleted.
DeleteFile deletes a file.
DeleteFileFn executes the functionx if the file is deleted.
Extension returns the extension of the file name.
No description provided by the author
IfExists checks if the file exists and executes the functionx.
IfIsDir executes the given functionx if the given path is a directory.
IfIsFile executes the given functionx if the given path is a file.
IfIsRegular executes the functionx if the file is a regular file.
IfNotExists executes the functionx if the file does not exist.
IsDir checks if the given path is a directory.
No description provided by the author
IsExists returns true if the file exists.
IsFile checks if the given path is a file.
IsNotExists returns true if the file does not exist.
IsRegular returns true if the file is a regular file.
IsSubDir checks if the given path is a subdirectory of the given parent.
IsSymlink returns true if the file is a symlink.
MatchPattern returns true if the filepath matches any of the patterns.
MkdirIfNotExist creates a directory if it does not exist.
NewSplitFile creates a new SplitFile.
NewSplitFileBySize create a new SplitFile by size.
WhenFileRead is a function that executes a function when a file is read.