Jump to content
LaunchBox Community Forums

Moving BIN/CUE into Folders


earthprime

Recommended Posts

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.

Link to comment
Share on other sites

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"

 

 

Link to comment
Share on other sites

  • 2 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...