Related:
- Batch file 2 check folder for files under x
- Tentacle locker 2 - Download - Adult games
- How to open .ps file - Guide
- Dvi file - Guide
- Cx file explorer zip folder - Download - File management
- Crdownload file - Guide
1 response
This is what I have so far:
@echo off
Rem Echo Filename & Size
for %%a in (dir C:\test\*.*) do (
if %%~za GTR 131072 (
xcopy /Y "%%a" C:\over
)
)
echo carry on with program
Which works but I'm having a problem outputting the logging. I want to give a list of all files copied to C:\over to the user in notepad, but when I try it's displaying a seperate notepad for each file. xcopy doesn't give a log, so I can't use that.
Any ideas?
@echo off
Rem Echo Filename & Size
for %%a in (dir C:\test\*.*) do (
if %%~za GTR 131072 (
xcopy /Y "%%a" C:\over
)
)
echo carry on with program
Which works but I'm having a problem outputting the logging. I want to give a list of all files copied to C:\over to the user in notepad, but when I try it's displaying a seperate notepad for each file. xcopy doesn't give a log, so I can't use that.
Any ideas?