mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 14:13:03 +00:00
ff5ce767df
This reverts commit eaf401eda9
.
45 lines
832 B
Go
45 lines
832 B
Go
package filesystem
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/xtls/xray-core/common/buf"
|
|
"github.com/xtls/xray-core/common/platform"
|
|
)
|
|
|
|
type FileReaderFunc func(path string) (io.ReadCloser, error)
|
|
|
|
var NewFileReader FileReaderFunc = func(path string) (io.ReadCloser, error) {
|
|
return os.Open(path)
|
|
}
|
|
|
|
func ReadFile(path string) ([]byte, error) {
|
|
reader, err := NewFileReader(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer reader.Close()
|
|
|
|
return buf.ReadAllToBytes(reader)
|
|
}
|
|
|
|
func ReadAsset(file string) ([]byte, error) {
|
|
return ReadFile(platform.GetAssetLocation(file))
|
|
}
|
|
|
|
func CopyFile(dst string, src string) error {
|
|
bytes, err := ReadFile(src)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
f, err := os.OpenFile(dst, os.O_CREATE|os.O_WRONLY, 0o644)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer f.Close()
|
|
|
|
_, err = f.Write(bytes)
|
|
return err
|
|
}
|