92e6c4fe1e
Extends DownloadSettings with 4 additional options: - Name: File name pattern for downloaded files (existed) - Disabled: Disables downloads - Originals: Only download files stored in "originals" folder - MediaRaw: Include RAW image files - MediaSidecar: Include metadata sidecar files (JSON, XMP, YAML)
13 lines
244 B
Go
13 lines
244 B
Go
package txt
|
|
|
|
import (
|
|
"unicode"
|
|
)
|
|
|
|
// UpperFirst returns the string with the first character converted to uppercase.
|
|
func UpperFirst(str string) string {
|
|
for i, v := range str {
|
|
return string(unicode.ToUpper(v)) + str[i+1:]
|
|
}
|
|
return ""
|
|
}
|