gpt4 book ai didi

file - 从包含数千个文件的主文件夹创建 A 到 Z 子文件夹

转载 作者:行者123 更新时间:2023-12-01 22:09:43 25 4
gpt4 key购买 nike

主要文件夹内容(示例)

apple.txt
art.txt
berry.txt
cherry.txt
coffee.txt
..,
...
...
zebra.txt

预期输出(子文件夹)

A
apple.txt
art.txt
B
berry.txt
C
cherry.txt
coffee.txt
...
...
...
Z
zebra.txt

如何通过 Windows 批处理文件完成此操作?

最佳答案

这是我快速编写的脚本。基本上创建一个 dir 如果不存在,然后在脚本的根目录中搜索所有 .txt 文件,然后测试单词的第一个字母,然后将其复制到匹配目录。

@echo off
setlocal enabledelayedexpansion
for %%i in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
if not exist %%i mkdir %%i
)
for %%f in (*.txt) do (
set "file=%%f"
set "var=!file:~0,1!"
echo move "%%~dpf!file!" "%%~dpf!var!\"
)
pause

经过测试,只需删除倒数第二行copy 之前的echo 即可实际执行copy 任务

关于file - 从包含数千个文件的主文件夹创建 A 到 Z 子文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48872440/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com