Skip to content

Instantly share code, notes, and snippets.

@findix
Created April 10, 2015 08:43
Show Gist options
  • Save findix/2835d5cc1f9a4a626e12 to your computer and use it in GitHub Desktop.
Save findix/2835d5cc1f9a4a626e12 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
import os
def main():
for root, dirs, files in os.walk("."):
for f in files:
if ".meta" not in f:
print root.replace(".\\",""),f.split('.')[0]
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment