file

package
v1.52.3-0...-16af9ab Latest Latest
Warning

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

Go to latest
Published: Jun 26, 2020 License: MIT Imports: 3 Imported by: 0

Documentation

Overview

Package file provides a version of os.OpenFile, the handles of which can be renamed and deleted under Windows.

Index

Constants

View Source
const PreallocateImplemented = true

PreallocateImplemented is a constant indicating whether the implementation of Preallocate actually does anything.

View Source
const SetSparseImplemented = false

SetSparseImplemented is a constant indicating whether the implementation of SetSparse actually does anything.

Variables

View Source
var OpenFile = os.OpenFile

OpenFile is the generalized open call; most users will use Open or Create instead. It opens the named file with specified flag (O_RDONLY etc.) and perm (before umask), if applicable. If successful, methods on the returned File can be used for I/O. If there is an error, it will be of type *PathError.

Under both Unix and Windows this will allow open files to be renamed and or deleted.

Functions

func Create

func Create(name string) (*os.File, error)

Create creates the named file with mode 0666 (before umask), truncating it if it already exists. If successful, methods on the returned File can be used for I/O; the associated file descriptor has mode O_RDWR. If there is an error, it will be of type *PathError.

func Open

func Open(name string) (*os.File, error)

Open opens the named file for reading. If successful, methods on the returned file can be used for reading; the associated file descriptor has mode O_RDONLY. If there is an error, it will be of type *PathError.

func PreAllocate

func PreAllocate(size int64, out *os.File) error

PreAllocate the file for performance reasons

func SetSparse

func SetSparse(out *os.File) error

SetSparse makes the file be a sparse file

Types

This section is empty.

Jump to

Keyboard shortcuts

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