windows - 在目录/子目录中生成文件夹 list.txt 文件,并在批处理文件中使用 dir & ren 命令将 list.txt 重命名为文件夹/子文件夹名称

标签 windows list batch-file directory batch-rename

我正在努力:

  1. 在文本文件中列出子文件夹中每个文件夹的内容,
  2. 将文本文件放在父文件夹和子文件夹中,
  3. 将输出文本文件重命名为父文件夹/子文件夹的名称。

为了实现这一点,我尝试了以下批处理脚本

del /s __List.txt
for /F "delims=" %%G IN ('dir /b /s') DO @echo "%%G">>"%%~__List.txt"
for /r %%a in (__List.txt) do for %%b in ("%%~dpa\.") do ren "%%~a" "%%~nxb%%~xa"
pause

现在

  1. 我能够列出每个文件夹的文件,
  2. __List.txt 正在创建,
  3. __List.txt 正在重命名为子文件夹。

问题是:

  1. 不打印空文件夹。
  2. 如果任何目录已经有“directory/Subdirectory Name.txt”,得到这个错误

    A duplicate file name exists or the file cannot found

  3. 在控制台窗口中显示错误。 (首选方法可能是创建错误日志并将其放在父文件夹中。)但是它是可选的。

由于部分查询单独发布在其中,因此在回答时可以引用以下内容:

  1. .bat rename files in folders/sub-folders to specific name
  2. Batch Files: List all files in a directory, print as .txt and place output file in all sub directories
  3. Batch File - Rename files based on parent name and (sub)folder(s) name

文件夹结构示例:

  • 父文件夹
    • 子文件夹-01
      • __filelist.txt
        使用命令创建内容列表 dir 并转换为 Sub Folder-01.txt
      • 一些数据文件 1.xyz
      • 一些数据文件 2.xyz
      • 一些数据文件 3.xyz
    • 子文件夹-02-空
      • 子子文件夹-01
        • __filelist.txt
          可能的原因“文件已存在”错误。
        • 一些数据文件_A.xyz
        • 一些数据文件_B.xyz
        • 一些数据文件_C.xyz
      • __filelist.txt
        由于文件夹空白而未生成。 “找不到文件”错误的可能原因。
    • 批处理文件.bat
    • __filelist.txt
    • some-file.xyz

可能需要双重解决方案

  1. 命令 dir 命令应该生成 filelist.txt,即使文件夹是空的,它也会解决“找不到文件”错误。

    <
  2. 命令 ren 应该覆盖现有的 filelist.txt 或将现有的 filelist.txt 重命名为 filelist1-100.txt 递增顺序。它可能会解决“文件已存在”错误。

最佳答案

试试这个注释批处理文件:

@echo off
setlocal
if "%~1" == "" goto UseCD

rem The start folder is either the current folder on running the batch file
rem or the folder specified as first argument on starting the batch file.
rem All / (Unix/Mac) in specified folder path are replaced by \ (Windows).
rem The folder path must not end with a backslash for this task.

set "StartFolder=%~1"
set "StartFolder=%StartFolder:/=\%"
if "%StartFolder:~-1%" == "\" set "StartFolder=%StartFolder:~0,-1%"
if exist "%StartFolder%\" goto CreateLists

rem The environment variable CD (Current Directory) holds the entire path
rem to the current folder ending not with a backslash, except the current
rem folder is the root folder of a drive.

:UseCD
if not "%CD:~-1%" == "\" (
    set "StartFolder=%CD%"
) else (
    set "StartFolder=%CD:~0,-1%"
)

rem The error log file in start folder existing perhaps from a previous
rem run is deleted first before the list file is created recursively in
rem each folder of the start folder.

:CreateLists
set "ErrorLogFile=%StartFolder%\Error.log"
%SystemRoot%\System32\attrib.exe -h -r -s "%ErrorLogFile%" >nul
del "%ErrorLogFile%" 2>nul

call :RecursiveList "%StartFolder%"

endlocal

rem Avoid an unwanted fall through to the subroutine.
goto :EOF


rem RecursiveList is a subroutine called for each folder found
rem in the start folder and its subfolders.

rem For the root folder of a drive like C: the list file name is "DriveC.txt".
rem For all other folders the list file name is "Folder Name.txt".

rem The command DEL does not delete a file which has hidden, read-only or
rem system attribute set. For that reason ATTRIB is called first to remove
rem those attributes from a perhaps already existing list file in current
rem folder. ATTRIB outputs an error message because of not existing file
rem to handle STDOUT which is the reason for >nul which redirects this
rem not important error message to device NUL.

rem Next the list file is deleted with suppressing the error message output
rem by command DIR to handle STDERR with 2>nul if the file does not exist
rem at all. But in case of the file really exists and could not be deleted
rem (NTFS permissions, file access denied because file is opened in another
rem application), an error message is logged into error log file in start
rem folder which is hopefully not write-protected, too.

rem Creating a list file in a folder is skipped if there is already
rem a list file and it could not be deleted by command DEL.

rem Otherwise the command DIR is used to write first the names of the
rem subfolders in alphabetical order according to name (not alphanumeric)
rem into the list file of current folder and next append the names of all
rem files in current folder also ordered by name. The name of the list file
rem is included in list file. Comment the two lines with command DIR and
rem uncomment the 3 lines below to avoid this by first writing the folder
rem and files names into a list file in temporary files folder and then
rem move this list file with correct list file name to the current folder.

rem Last for each subfolder in current folder the subroutine RecursiveList
rem calls itself until all subfolders in current folder have been processed.

:RecursiveList
set "FolderPath=%~1"
if "%FolderPath:~2%" == "" (
    set "ListFileName=Drive%FolderPath:~0,1%.txt"
) else (
    set "ListFileName=%~nx1.txt"
)

%SystemRoot%\System32\attrib.exe -h -r -s "%FolderPath%\%ListFileName%" >nul
del "%FolderPath%\%ListFileName%" >nul 2>&1
if exist "%FolderPath%\%ListFileName%" (
    echo Failed to update: "%FolderPath%\%ListFileName%">>"%ErrorLogFile%"
    goto ProcessSubFolders
)

dir /AD /B /ON "%FolderPath%">"%FolderPath%\%ListFileName%" 2>nul
dir /A-D /B /ON "%FolderPath%">>"%FolderPath%\%ListFileName%" 2>nul

rem dir /AD /B /ON "%FolderPath%">"%TEMP%\%~n0.tmp" 2>nul
rem dir /A-D /B /ON "%FolderPath%">>"%TEMP%\%~n0.tmp" 2>nul
rem move "%TEMP%\%~n0.tmp" "%FolderPath%\%ListFileName%"

:ProcessSubFolders
for /D %%I in ("%FolderPath%\*") do call :RecursiveList "%%~I"
goto :EOF

rem The command above exits the subroutine RecursiveList. The batch
rem file processing is continued in previous routine which is again
rem the subroutine RecursiveList or finally the main batch code above.

批处理文件只将子文件夹的名称和该文件夹中的文件写入每个文件夹列表文件。

例如 Sub Folder-02-Empty.txt 仅包含

Sub-Sub Folder-01
Sub Folder-02-Empty.txt

对于给定的示例,Sub-Sub Folder-01.txt 包含:

__filelist.txt
some-Data-files_A.xyz
some-Data-files_B.xyz
some-Data-files_C.xyz
Sub-Sub Folder-01.txt

如果列表文件的文件名不应包含在列表文件中,请阅读有关如何排除列表文件的注释。

要了解使用的命令及其工作原理,请打开命令提示符窗口,在其中执行以下命令,并仔细阅读为每个命令显示的所有帮助页面。

  • attrib/?
  • 调用/?
  • del/?
  • dir/?
  • echo/?
  • endlocal/?
  • for/?
  • goto/?
  • 如果/?
  • rem/?
  • 设置/?
  • setlocal/?

关于windows - 在目录/子目录中生成文件夹 list.txt 文件,并在批处理文件中使用 dir & ren 命令将 list.txt 重命名为文件夹/子文件夹名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40340738/

相关文章:

java - 在没有 web 方面安装 java?

windows - flexbox 在 safari 5.1 窗口中不工作

windows - cmd.exe/k (echo %1 & echo %~n1) 放入注册表命令项时未按预期输出

c# - 将对对象的引用添加到列表

python - 附加列表的结束循环

windows - 如何给Windows命令一个定时器?

batch-file - 在 if 语句内的设置变量内扩展 %userprofile%。批

c++ - 可能在 ReadFile() 上超时?

python - 元组拆包顺序更改分配的值

batch-file - 批处理 : Timestamp to UNIX Time