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 Dec 28, 2013 19:32    Post subject: Reply with quote

Code:
@echo off &setlocal enableextensions
::   http://forum.wincmd.ru/viewtopic.php?p=104462#104462
::   Параметры:   "%WL"
set Ext=MP3 OGG FLAC APE AAC M4A WMA

for /f "delims=" %%d in ('type "%~1"') do call :E "%%d"
goto :eof

:E
title %1
pushd %1
for %%e in (%Ext%) do (
   for /f "delims=" %%f in ('dir /b/a-d *.%%e 2^>nul') do (
      cd .. &md %%e 2>nul
      move /y "%~1." %%e &&goto :eof
   )
)
goto :eof
View user's profile Send private message


Powered by phpBB © 2001, 2005 phpBB Group