earthprime Posted January 16, 2021 Share Posted January 16, 2021 I have a folder with pairs of bin and cue files. Each bin and cue is named the same, i.e. wipeout.bin wipeout.cue Is there a useful batch file somewhere that can move all files with the same name into a folder? I'm looking for an easy way to move my PSX bin and cue files into folders so I don't have to manually create 1000 folders. Quote Link to comment Share on other sites More sharing options...
earthprime Posted January 16, 2021 Author Share Posted January 16, 2021 Solved - for anyone else who might need this. To create folders in the drive using file names as folder names copy the line below exactly: for %i in (*) do md "%~ni" To move files into the folders you created copy the line below exactly: for %i in (*) do move "%i" "%~ni" Quote Link to comment Share on other sites More sharing options...
golvellius82 Posted February 5 Share Posted February 5 i love you thank you Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.