If you are sure you want to get rid of the pictures delete them.How can I remove them from the folders they are in?
@echo off
set src=C:\test
pushd "%src%"
for /f "delims=" %%a in ('dir /b /s /a-d') do move "%%a" "%src%"
for /f "delims=" %%b in ('dir /b /s /ad') do rd /q /s "%%b"
popd
I'm really sorry but I'm really stupid here. Where do i put this code and what will it do. I can back up my files.you can use this batch code
make a backup of files before executing
Code:@echo off set src=C:\test pushd "%src%" for /f "delims=" %%a in ('dir /b /s /a-d') do move "%%a" "%src%" for /f "delims=" %%b in ('dir /b /s /ad') do rd /q /s "%%b" popd
Is xxcopy a downloadable program?Look at the /S switch variations with XXcopy. Lot of things you can do. You have to be careful should you have duplicate filenames. The /SG switch and its variations will come in handy for that.
Did you Google Search.Is xxcopy a downloadable program?
chuck.
Sometimes you just need to K.I.S.S.Thanks everyone. The problem was solved by opening every folder, copying the contents and pasting them back into my pictures then deleting all the folders. It worked.
chuck.
Are you looking for the solution to your computer problem? Join our site today to ask your question. This site is completely free -- paid for by advertisers and donations.
If you're not already familiar with forums, watch our Welcome Guide to get started.
Join over 807,865 other people just like you!