Add godoc to Base64EncodeFileName and Base64Encode
This commit is contained in:
parent
e62f1adaae
commit
727e6d8c54
|
@ -6,6 +6,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Base64EncodeFileName returns the base64 data URI format string of the file with the file name.
|
||||||
func Base64EncodeFileName(filename string) (string, error) {
|
func Base64EncodeFileName(filename string) (string, error) {
|
||||||
file, err := os.Open(filename)
|
file, err := os.Open(filename)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -16,6 +17,7 @@ func Base64EncodeFileName(filename string) (string, error) {
|
||||||
return Base64Encode(file)
|
return Base64Encode(file)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Base64Encode returns the base64 data URI format string of the file.
|
||||||
func Base64Encode(file *os.File) (string, error) {
|
func Base64Encode(file *os.File) (string, error) {
|
||||||
fi, err := file.Stat()
|
fi, err := file.Stat()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user