Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有很多文件夹和文件(递归深度 ~2 子目录),并且想用我的单个文件的内容更改所有这些文件的内容,在这些目录中保留原始文件名。有批量解决方案吗?对不起我的法语..
如果“使用我的单个文件的内容更改所有这些文件的内容,保留原始文件名”是指“将我的单个文件复制到所有保留原始文件名的文件上”,那么这个批处理文件会这样做:
@echo off for /R "C:\Parent\folder\to\process" %%a in (*.*) do copy /Y "C:\Data\My Single File.ext" "%%a"