|
@@ -138,3 +138,38 @@ func UploadFileToAliyun(filename, filepath, savePath string) error {
|
|
|
//return path,err
|
|
|
return err
|
|
|
}
|
|
|
+
|
|
|
+// GetCloudDiskResourceFileTypeExtMap 常见文件类型图标
|
|
|
+func GetCloudDiskResourceFileTypeExtMap() map[string]string {
|
|
|
+ return map[string]string{
|
|
|
+ ".doc": "https://hzstatic.hzinsights.com/static/icon/file_type_docx.png",
|
|
|
+ ".docx": "https://hzstatic.hzinsights.com/static/icon/file_type_docx.png",
|
|
|
+
|
|
|
+ ".pdf": "https://hzstatic.hzinsights.com/static/icon/file_type_pdf.png",
|
|
|
+
|
|
|
+ ".ppt": "https://hzstatic.hzinsights.com/static/icon/file_type_ppt.png",
|
|
|
+ ".pptx": "https://hzstatic.hzinsights.com/static/icon/file_type_ppt.png",
|
|
|
+
|
|
|
+ ".xls": "https://hzstatic.hzinsights.com/static/icon/file_type_xlsx.png",
|
|
|
+ ".xlsx": "https://hzstatic.hzinsights.com/static/icon/file_type_xlsx.png",
|
|
|
+
|
|
|
+ ".jpg": "https://hzstatic.hzinsights.com/static/icon/file_type_pic.png",
|
|
|
+ ".jpeg": "https://hzstatic.hzinsights.com/static/icon/file_type_pic.png",
|
|
|
+ ".png": "https://hzstatic.hzinsights.com/static/icon/file_type_pic.png",
|
|
|
+ ".bmp": "https://hzstatic.hzinsights.com/static/icon/file_type_pic.png",
|
|
|
+ ".svg": "https://hzstatic.hzinsights.com/static/icon/file_type_pic.png",
|
|
|
+ ".gif": "https://hzstatic.hzinsights.com/static/icon/file_type_pic.png",
|
|
|
+
|
|
|
+ ".mp4": "https://hzstatic.hzinsights.com/static/icon/file_type_video.png",
|
|
|
+ ".wmv": "https://hzstatic.hzinsights.com/static/icon/file_type_video.png",
|
|
|
+ ".mov": "https://hzstatic.hzinsights.com/static/icon/file_type_video.png",
|
|
|
+ ".mpeg": "https://hzstatic.hzinsights.com/static/icon/file_type_video.png",
|
|
|
+ ".avi": "https://hzstatic.hzinsights.com/static/icon/file_type_video.png",
|
|
|
+ ".flv": "https://hzstatic.hzinsights.com/static/icon/file_type_video.png",
|
|
|
+ ".rm": "https://hzstatic.hzinsights.com/static/icon/file_type_video.png",
|
|
|
+ ".rmvb": "https://hzstatic.hzinsights.com/static/icon/file_type_video.png",
|
|
|
+
|
|
|
+ ".mp3": "https://hzstatic.hzinsights.com/static/icon/file_type_audio.png",
|
|
|
+ ".wma": "https://hzstatic.hzinsights.com/static/icon/file_type_audio.png",
|
|
|
+ }
|
|
|
+}
|