python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Get File size in hex using forfiles
I am using this command in CMD to take all file size in a directory.
forfiles /s /c "cmd /c echo @file @fsize" >filelist.txt
There has someway to take this size but in hex format?
Exampl...
Thiago Martins dos santos
Votes: 0
Answers: 2
ffmpeg error "output file #0 does not contain any stream" with FORFILES
I'm trying to convert all the songs in a folder from flac to alac. All the files in the folder are flac.
What I'm writing:
FORFILES /M *.* /C "ffmpeg -i @fname.flac -c:v copy -c:a alac @fname.m4a...

shadybusiness
Votes: 0
Answers: 1
When I put a batch program in the task scheduler, it didn't finish the whole task, so why did this happen?
This problem is from the scheduler task, batch program, or the files in a folder that I want to delete it using the batch program?
and this is the batch program:
forfiles /p "D:\nameOfFolder"...
Lubna
Votes: 0
Answers: 3
Process one file at a time in batch
I'm trying to hand over one file at a time to File2BMP, move the output, delete the source and move on to the next file.
I've tried FORFILES but it seems to process all files at once, that's what I wa...
widardd
Votes: 0
Answers: 1