diff options
author | Keuin <[email protected]> | 2023-07-07 00:34:55 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2023-07-07 00:34:55 +0800 |
commit | 7fd817f6d1ead3de85294c1893a6e1572a1d12e3 (patch) | |
tree | 38b9f13104fe208449b679a2b77959dea5ab1b4e /common/files/filename.go | |
parent | 6eb5a7af48d04adc5625cbc8355e2556db4b992f (diff) |
Refactor: move file operations into single package.
Diffstat (limited to 'common/files/filename.go')
-rw-r--r-- | common/files/filename.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/files/filename.go b/common/files/filename.go new file mode 100644 index 0000000..725563c --- /dev/null +++ b/common/files/filename.go @@ -0,0 +1,7 @@ +package files + +import "fmt" + +func CombineFileName(base string, ext string) string { + return fmt.Sprintf("%s.%s", base, ext) +} |