I couldn't quite find the solution to this question, so here we go. I am writing a script that will read data from a CSV file, and I want to automate the code to repeat and read through through several CSV files in one folder. I am trying to use os.walk, but encounter errors.
Questions: 1. How do I use os.walk correctly? 2. What is the best way to plug in updates on progress as it goes through the input CSV files?
The first part of the script, where I need to implement os.walk, is below:
import sys
import os
import arcpy
import csv
from arcpy import env
## Set overwrite
arcpy.env.overwriteOutput = True
print arcpy.env.overwriteOutput
## Set workspace
arcpy.env.workspace = "C:\\Home\\directory\\"
workspace = "C:\\Home\\directory\\"
print workspace
for root, dirs, files in os.walk('C:\\Home\\directory\\CSV\\'):
print root, dirs, files
## Directory where I'm keeping the CSVs
full_path = os.path.join(root, files)
rows = csv.DictReader(open(full_path, "rb"))
if os.path.exists(outpath)==False:
os.mkdir(outpath)
for row in rows: # here begin reading through the CSV for the rest of the script