Total Commander Forum Index Total Commander
Форум поддержки пользователей Total Commander
Сайты: Все о Total Commander | Totalcmd.net | Ghisler.com | RU.TCKB
 
 RulesRules   SearchSearch   FAQFAQ   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Single Post  Topic: Замена файлов в подпапках 
Author Message
Tol!k



PostPosted: Sat Mar 01, 2014 20:25    Post subject: Reply with quote

CMD
Code:
@echo off &setlocal enableextensions
::   Замена одноимённых файлов в структуре каталога целевой панели
::   Параметры:   "%P%O.%E" "%T"

pushd %2
for /f "delims=" %%f in ('dir /b/a-d/s "%~2%~nx1" 2^>nul') do (
   xcopy /fhrkyz %1 "%%f"
)
View user's profile Send private message


Powered by phpBB © 2001, 2005 phpBB Group