Search found 4 matches

by lauraq
12 Jun 2021 16:34
Forum: DOS Batch Forum
Topic: serch all flac in folder and subfolder? (wrong script)
Replies: 2
Views: 2413

serch all flac in folder and subfolder? (wrong script)

Hi :) Can u tell me what I must change in that script for search also in subfolder? @echo off chcp 1252 set "nomefile=%temp%\FILES.TXT" set "file_mask=*.flac if not exist "%~1"\* exit /b 1 pushd "%~1" || exit /b 1 >"%nomefile%" ( for /f "delims=;" %%X in (' dir /a:-d /b %file_mask% ') do ( set/p"=%%...
by lauraq
22 May 2016 13:56
Forum: DOS Batch Forum
Topic: .bat for copy certain file and recreating folder structure
Replies: 3
Views: 3099

Re: .bat for copy certain file and recreating folder structure

and a million dollar payout can help you :mrgreen:

sorry but I m not expert, I have read what I have find but I need your help
by lauraq
22 May 2016 02:22
Forum: DOS Batch Forum
Topic: .bat for copy certain file and recreating folder structure
Replies: 3
Views: 3099

.bat for copy certain file and recreating folder structure

Hi :)
I should copy all of the .lnk files there are in a folder with many subfolder, and recreate the same structure in another folder. Can you help me please? :D