批处理脚本复制小写文件

发布于 2024-12-03 12:58:36 字数 253 浏览 0 评论 0原文

我有文件正在上传到文件夹。我需要一个批处理脚本来根据文件名将这些文件重定向到单独的文件夹。除了两组文件名称非常相似但大小写不同之外,这一切都很好。 IE。 log0000.txt 和 LOG0000.txt。

我想做的是搜索文件夹并检查所有文件,如果它们有小写“log”,则将它们移动到一个文件夹,如果它们有大写“LOG”,则将它们移动到另一个文件夹。

我知道如何循环遍历文件夹中的文件,但我不确定如何匹配比较并根据大小写匹配每个文件。

谢谢。

I have files being uploaded to a folder. I need a batch script to redirect those files to separate folders based on filenames. That's all fine except for two sets of files that have very similar names but only different by case. Ie. log0000.txt and LOG0000.txt.

What I would like to do is search through the folder and check all files and if they have a lowercase "log", move them to one folder and if they have uppercase "LOG", move them to the other.

I know how to loop through the files in the folder, but I'm unsure how to match the comparision and match each file based on case.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

合久必婚 2024-12-10 12:58:36

既然您已经知道如何循环和移动,

@echo off

for /f "usebackq delims=" %%f in (`dir /s /b log* ^| findstr "log"`) do (
    @rem code to copy all lower case files
)

for /f "usebackq delims=" %%f in (`dir /s /b log* ^| findstr "LOG"`) do (
    @rem code to copy all upper case files
)

Since you already know how to loop and move,

@echo off

for /f "usebackq delims=" %%f in (`dir /s /b log* ^| findstr "log"`) do (
    @rem code to copy all lower case files
)

for /f "usebackq delims=" %%f in (`dir /s /b log* ^| findstr "LOG"`) do (
    @rem code to copy all upper case files
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文