mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-23 14:48:13 -05:00
✨ Feature: now prompts if there are duplicate file names
This commit is contained in:
parent
d6df9bcaf4
commit
8ba46d9272
@ -1353,7 +1353,7 @@ https://www.baidu.com/img/bd_logo1.png"
|
||||
</el-tooltip>
|
||||
</span>
|
||||
</el-link>
|
||||
<br />
|
||||
<br>
|
||||
<el-switch
|
||||
v-model="isRenameIncludeExt"
|
||||
active-text="是"
|
||||
@ -2588,6 +2588,7 @@ async function BatchRename () {
|
||||
for (let i = 0; i < matchedFiles.length; i++) {
|
||||
matchedFiles[i].newName = matchedFiles[i].newName.replaceAll('{auto}', (i + 1).toString())
|
||||
}
|
||||
const duplicateFilesNum = matchedFiles.filter((item: any) => matchedFiles.filter((item2: any) => item2.newName === item.newName).length > 1).length
|
||||
let successCount = 0
|
||||
let failCount = 0
|
||||
const error = new Error('error')
|
||||
@ -2648,6 +2649,12 @@ async function BatchRename () {
|
||||
})
|
||||
})
|
||||
}
|
||||
if (duplicateFilesNum > 0) {
|
||||
ElMessageBox.confirm(`检测到有${duplicateFilesNum}个文件名重复,是否继续?`, '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
const promiseList = [] as any[]
|
||||
for (let i = 0; i < matchedFiles.length; i++) {
|
||||
promiseList.push(renamefunc(matchedFiles[i]))
|
||||
@ -2655,6 +2662,18 @@ async function BatchRename () {
|
||||
Promise.allSettled(promiseList).then(() => {
|
||||
ElMessage.success(`重命名成功${successCount}个,失败${failCount}个`)
|
||||
})
|
||||
}).catch(() => {
|
||||
ElMessage.info('已取消')
|
||||
})
|
||||
} else {
|
||||
const promiseList = [] as any[]
|
||||
for (let i = 0; i < matchedFiles.length; i++) {
|
||||
promiseList.push(renamefunc(matchedFiles[i]))
|
||||
}
|
||||
Promise.allSettled(promiseList).then(() => {
|
||||
ElMessage.success(`重命名成功${successCount}个,失败${failCount}个`)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
function handelBatchCopyInfo () {
|
||||
|
Loading…
Reference in New Issue
Block a user