fileutil

package
v1.5.4 Latest Latest
Warning

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

Go to latest
Published: May 4, 2023 License: ISC Imports: 2 Imported by: 0

Documentation

Overview

Package fileutil contains common file functions.

Index

Constants

View Source
const (
	// AccessExists checks whether the file exists.
	AccessExists = unix.F_OK

	// AccessRead checks whether the user has read permissions on
	// the file.
	AccessRead = unix.R_OK

	// AccessWrite checks whether the user has write permissions
	// on the file.
	AccessWrite = unix.W_OK

	// AccessExec checks whether the user has executable
	// permissions on the file.
	AccessExec = unix.X_OK
)

Variables

This section is empty.

Functions

func Access

func Access(path string, mode int) error

Access returns a boolean indicating whether the mode being checked for is valid.

func DirectoryDoesExist

func DirectoryDoesExist(path string) bool

DirectoryDoesExist returns true if the file exists.

func FileDoesExist

func FileDoesExist(path string) bool

FileDoesExist returns true if the file exists.

Types

This section is empty.

Jump to

Keyboard shortcuts

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