file

package
v1.4.11 Latest Latest
Warning

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

Go to latest
Published: May 18, 2023 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func OpenFile

func OpenFile(filename string) (*os.File, error)

OpenFile 文件不存在则创建, 文件存在, 文件以追加模式进行写操作 返回的文件指针模式为可读可写 filename 文件路径.

func OpenFileWithTrunc

func OpenFileWithTrunc(filename string) (*os.File, error)

OpenFileWithTrunc 文件不存在则创建, 文件存在, 清空内容 返回的文件指针模式为可读可写 filename 文件路径.

func ReadFile

func ReadFile(filename string) ([]byte, error)

ReadFile 只适合读取小文件,不适合读取大文件 会主动关闭文件对象.

func WriteFile

func WriteFile(filename string, data []byte, ifExistTrunc bool) error

WriteFile 写数据到文件, 文件对象会自动关闭 filename 文件路径 data 需要写入的数据.

func WriteFileWithObj

func WriteFileWithObj(f *os.File, data []byte) error

WriteFileWithObj 写数据到文件, 文件对象会自动关闭 f 文件对象指针 data 需要写入的数据.

func WriteFileWithoutClose added in v1.4.1

func WriteFileWithoutClose(f *os.File, data []byte) error

WriteFileWithoutClose 写数据到文件, 文件对象不会关闭 f 文件对象指针 data 需要写入的数据.

Types

This section is empty.

Jump to

Keyboard shortcuts

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