#!\usr\bin\python
import sys
import os
import ftplib
import glob
from os import listdir
from os.path import isfile, join

cwd = os.getcwd()

onlyfiles = [f for f in listdir(cwd) if isfile(join(cwd, f))]

for path in onlyfiles:
	if ".txt" in path and not "README" in path:
		temp = "Gateshark2NTR.exe \"" + cwd + "\\" + path + "\""
		print "Converting: " + temp
		os.system(temp);