This commit is contained in:
骑着蜗牛追导弹 2024-12-26 21:05:14 +08:00
parent b09d4ba9ca
commit 2a52c0a295
1 changed files with 12 additions and 14 deletions

26
main.go
View File

@ -2,33 +2,31 @@ package main
import ( import (
"OdMediaPicker/core" "OdMediaPicker/core"
"OdMediaPicker/vars"
_ "embed" _ "embed"
"fmt" "fmt"
_ "image/gif" // 导入gif支持 _ "image/gif" // 导入gif支持
_ "image/jpeg" // 导入jpeg支持 _ "image/jpeg" // 导入jpeg支持
_ "image/png" // 导入png支持 _ "image/png" // 导入png支持
"os"
"time" "time"
) )
func main() { func main() {
rootDir := "E:\\DGD\\待整理\\hent_pic" rootDir, err := os.Getwd()
//rootDir, err := os.Getwd() if err != nil {
//if err != nil { fmt.Println("=== 获取当前路径异常", err)
// fmt.Println("=== 获取当前路径异常", err) return
// return }
//}
scanner := core.FileScanner{} scanner := core.FileScanner{}
//scanner.DoScan(rootDir) scanner.DoScan(rootDir)
//scanner.DoFilter() scanner.DoFilter()
// 整理图片并分组 // 整理图片并分组
//if len(vars.GlobalImagePathList) > 0 { if len(vars.GlobalImagePathList) > 0 {
// core.DoHandleImage(rootDir) core.DoHandleImage(rootDir)
//} }
// 挑选文件数大于N的文件夹并转移 // 挑选文件数大于N的文件夹并转移
scanner.DoPickerDir(rootDir, 10) scanner.DoPickerDir(rootDir, 10)
//if len(vars.GlobalVideoPathList) > 0 {
// core.DoHandleVideo(rootDir)
//}
fmt.Println("=== 3s后自动退出") fmt.Println("=== 3s后自动退出")
time.Sleep(time.Second * 3) time.Sleep(time.Second * 3)
} }