You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package utils
-
- import (
- "fmt"
- )
-
- // MakeStorageLoadPackageDirName Load操作时,写入的文件夹的名称
- func MakeStorageLoadPackageDirName(packageID int64, userID int64) string {
- return fmt.Sprintf("%d-%d", packageID, userID)
- }
|