fs

package
v2.0.0-beta.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 13, 2020 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CreateFile

func CreateFile(newpath string) (*os.File, error)

CreateFile creates a new file at newpath, returning an error if newpath already exists

func CreateFileWithReplacement

func CreateFileWithReplacement(newpath string) (*os.File, error)

CreateFileWithReplacement will create a new file at any path, removing the contents of the old file

func RenameFile

func RenameFile(oldpath, newpath string) error

RenameFile renames oldpath to newpath, returning an error if newpath already exists. If this function returns successfully, the contents of newpath will be identical to oldpath, and oldpath will be removed.

func RenameFileWithReplacement

func RenameFileWithReplacement(oldpath, newpath string) error

RenameFileWithReplacement will replace any existing file at newpath with the contents of oldpath.

If no file already exists at newpath, newpath will be created using the contents of oldpath. If this function returns successfully, the contents of newpath will be identical to oldpath, and oldpath will be removed.

func SyncDir

func SyncDir(dirName string) error

SyncDir flushes any file renames to the filesystem.

Types

type FileExistsError

type FileExistsError struct {
	// contains filtered or unexported fields
}

A FileExistsError is returned when an operation cannot be completed due to a file already existing.

func (FileExistsError) Error

func (e FileExistsError) Error() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL