名前とバッジ番号を含む多くのファイルの名前を変更する必要があります。
ファイルは次のようになります: "John Doe1234.txt"そして名前を1234.txtに変更する必要があります
(新しいファイルにはバッジ番号のみが含まれている必要があります)。
また、バッジ番号は固定されていないため、3〜4個の番号を含めることができます。
更新:ファイル名には、スペースで区切られた2〜3個の名前が含まれています。例:「JohnDoe123.txt」または「JohnJuniorDoe1234.txt」
名前からすべての文字とスペースを削除し、数字のみを保持することを考えていましたが、Powershellの知識が十分ではありません。
誰かが私を助けてくれますか?
ファイル名cannotには特殊文字(_コードIS NOW FOOLPROOF。/\:*?"<>|
_)を含めることができますが、_%
_と_!
_は、_cmd.exe
_の誤解を引き起こす可能性があるため、コードは絶対確実ではありません。
_@echo off
SETLOCAL ENABLEDELAYEDEXPANSION
set "dir=YOUR DIRECTORY HERE"
set "_output="
set "map=0123456789"
pushd "%dir%"
FOR %%a in (*.txt) do (
SETLOCAL
set "file=%%~na"
1>temp.log echo(!file!
for %%b in (temp.log) do set /A len=%%~zb-2
del /F /Q temp.log
for /L %%A in (0 1 !len!) do (
for /F "delims=*~ eol=*" %%? in ("!file:~%%A,1!") do if "!map:%%?=!" NEQ "!map!" set "_output=!_output!%%?"
)
ren "!file!.txt" "!_output!.txt"
ENDLOCAL
)
ENDLOCAL
_
注:私の仮定は間違っていました。SETLOCAL
のため、最大31個のファイルしか処理できません。SETLOCAL
とENDLOCAL
のペアがあるため、無限のファイルを処理できます。
パワーシェル:
必要に応じて編集$ Source。 "-WhatIf"パラメータは、ポストされたコードを実行して、必要なファイルが見つかったこととNewNameが正しいことを確認できることを意味します。 "-WhatIf"パラメータを削除して、実際にファイルの名前を変更します。
$Source = 'c:\path\to\files'
Get-CHildItem $SOurce *.txt -File |
Rename-Item -NewName { $_.Name.Split(' ')[-1] } -whatIf
すべての入力ファイルがスペースとその後に少なくとも1つの数字で終わると仮定すると、これはジョブを実行するさらに別の方法のように見えます。重複番号はチェックしません。 [ニヤリ]
それがすること...
Copy-Item
をRename-Item
に置き換えます。.BaseName
プロップがスペースと少なくとも1桁で終わっていないファイルを削除します.Basename
を分割し、結果の最後の項目を取得します.Extension
小道具を追加します-PassThru
行のCopy-Item
は、「ファイルを作成した」という情報を画面に送信しますコード ...
$SourceDir = "$env:TEMP\InFiles"
$DestDir = "$env:TEMP\OutFiles"
#region >>> make some test dirs & files
$SourceDir, $DestDir |
ForEach-Object {
$Null = mkdir -Path $_ -ErrorAction 'SilentlyContinue'
}
# the last file is not to be worked on - wrong pattern
@'
FName LName 1234.txt
Alfa Bravo Charlie 89.txt
First Middle Last 666.txt
Wiki Tiki Exotica Music.txt
'@ -split [System.Environment]::NewLine |
ForEach-Object {
$Null = New-Item -Path $SourceDir -Name $_ -ItemType 'File' -ErrorAction 'SilentlyContinue'
}
#endregion >>> make some test files
$Filter = '*.txt'
Get-ChildItem -LiteralPath $SourceDir -Filter $Filter -File |
Where-Object {
# filter out any basename that does NOT end with a space followed by at least one digit
$_.BaseName -match ' \d{1,}$'
} |
ForEach-Object {
# split on the spaces & take the last item from the resulting array
$NewBaseName = $_.BaseName.Split(' ')[-1]
$NewFileName = '{0}{1}' -f $NewBaseName, $_.Extension
$FullNewFileName = Join-Path -Path $DestDir -ChildPath $NewFileName
Copy-Item -LiteralPath $_.FullName -Destination $FullNewFileName -PassThru
}
これは、次の方法を使用してバッチファイルで実行できます。
これは、最初の文字とスペースの数に関係なく機能します。
@echo off
setlocal enabledelayedexpansion
set "fPath=C:\test\my files\"
:: For each .txt file found in path %fPath% do....
for /F "tokens=*" %%a in ('DIR /B /ON "%fPath%*.txt"') do (
echo Processing: %%a
set "oName=%%a"
set "fName=%%a"
call :loop
)
echo Finished
endlocal
pause
:eof
exit /B
::=====================================================================
:: Check if the name is only numbers plus ".txt" on the end and if not, then remove the first character and check again.
:: If only numbers remaining, rename the original file. If no characters left then no match found and should go to next file.
:loop
if "!fName!"==".txt" exit /B
echo !fName!|findstr /r /c:"^[0-9]*\.txt$">nul
if !errorlevel! NEQ 0 set "fName=!fName:~1!" && goto :loop
ren "%fPath%%oName%" !fName!
exit /B
このタスクを実行するために追加のtemp.logファイルを作成する必要はなく、ファイル名に含まれる数字以外の文字について心配する必要もありません。
U N I C O D E
を使用してこれを行う場合は、ループfor
でフィルタリングします。ファイル名から出力された数値を取得します。これは次の方法で実行できます。
cmd /u "echo\ string" | findstr regex
1)cmd /u
はecho\string
を1文字ずつ名前付けます
cmd /u /c echo\John Doe 123.txt
2)findstr [0-9]
は変数!_n!
のループ内の数値のみを取得します%%~n
echo\John Doe 123.txt|%__APPDIR__%findstr.exe [0-9]
3)変数!_n!
を使用して、出力番号のみを結合することにより、%%~n
文字をインクリメントします
set "_n=!_n!%%~n"
@echo off && setlocal EnableDelayedExpansion
pushd "c:\path\to\your\files"
set "_where=%__APPDIR__%where.exe"
set "_findstr=%__APPDIR__%findstr.exe [0-9]"
for /f "tokens=*" %%S in ('!_where! .:"*.*"^|find/v "%~x0"')do (set "_str=%%~nS" && (
for /f %%n in ('cmd/u/cecho\"!_str!"^|find/v " "^|!_findstr!')do set "_n=!_n!%%~n" )
2>nul rename "%%~S" "!_n!%%~xS" && echo\"%%~S" ==^> .\!_n!%%~xS && set "_n=" <nul )
popd & %__APPDIR__%timeout.exe -1 & endlocal & goto :EOF
G:\SUPER_USER\Q1533871\John Doe 123.txt
G:\SUPER_USER\Q1533871\John Doe 1234.txt
G:\SUPER_USER\Q1533871\John Junior Doe 00001.txt
G:\SUPER_USER\Q1533871\John Junio Doe 154200 1 .txt
G:\SUPER_USER\Q1533871\John Doe 123.txt ==> .\123.txt
G:\SUPER_USER\Q1533871\John Doe 1234.txt ==> .\1234.txt
G:\SUPER_USER\Q1533871\John Junior Doe 00001.txt ==> .\00001.txt
G:\SUPER_USER\Q1533871\John Junio Doe 154200 1 .txt ==> .\1542001.txt
@echo off && setlocal EnableDelayedExpansion
pushd "c:\path\to\your\files"
set "_where=%__APPDIR__%where.exe"
set "_findstr=%__APPDIR__%findstr.exe [0-9]"
for /f "tokens=*" %%S in ('!_where! .:"*.*"^|find/v "%~x0"')do (set "_str=%%~nS" && (
for /f %%n in ('cmd/u/cecho\"!_str!"^|find/v " "^|!_findstr!')do set "_n=!_n!%%~n" )
2>nul rename "%%~S" "!_n!%%~xS" && echo\"%%~S" ==^> .\!_n!%%~xS && set "_n=" <nul
rem :: Aditionals taks commands enter here bellow here....
)
popd & %__APPDIR__%timeout.exe -1 & endlocal & goto :EOF
コマンドラインのヘルプについては、/?
:を使用できます
Pushd /?, Popd /?, Find /?, Findstr /?, Ren /?, For /?, Setlocal /?, Endlocal /?, Goto /?, Setlocal /?, Endlocal /?, if /?, timeout /?, ... /?
インターネットでは、次の点についてさらにヘルプを得ることができます:
すみません、私の限られた英語