

Is there any faster way to copy(move) files? Since I am dealing with the files that are occupying 20 GB of my disk, the code seems to take forever to move files this way. This code itself worked fine just as it was designed, but an additional problem was found: speed. So I wrote the following code to group files by moving certain number of files(shown as %limit% and will be 700) to numbered folders(shown as %DirN%) for /f "tokens=1-2 delims=:" %%a in ('dir /b /a-d ^|findstr /n /v ".bat. The problem was, the file explorer takes too much time to load the file list and my whole computer becomes slow. I have a massive number of files in one directory that I need to validate.
