if __name__ == '__main__':
currdir = os.getcwd()
for filepath in os.listdir(currdir):
filename, ext = os.path.splitext(filepath)
if ext in ['.xlsx', '.xls', '.csv']:
print(filepath)
data = GetData(filepath)
RecordSql(data, filename)
Oldest comments (0)
Subscribe
For further actions, you may consider blocking this person and/or reporting abuse
π If you came here from Google, why not take a look at some of our top posts?
Oldest comments (0)