Skip to content

Instantly share code, notes, and snippets.

@error454
Created December 24, 2015 04:49
Show Gist options
  • Save error454/c4c6ababbcc2001bb533 to your computer and use it in GitHub Desktop.
Save error454/c4c6ababbcc2001bb533 to your computer and use it in GitHub Desktop.
Quick & Dirty extension renamer
import os
files = os.listdir('.')
for file in files:
s = file.split(".wav.ogg")
if len(s) > 1:
name = s[0] + ".ogg"
os.rename(file, name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment