removed \Tank\ from filepath

This commit is contained in:
Fred Warren 2023-06-28 11:51:52 -07:00
parent 45cd1a29c9
commit 9716a278f2

View File

@ -4,22 +4,22 @@ import csv
import json
skip_list = [
'D:\Tank\Home',
'D:\Tank\Shares\hr',
'D:\Tank\Shares\payroll',
'D:\Tank\Shares\cis'
'D:\\home',
'D:\\shares\\hr',
'D:\\shares\\payroll',
'D:\\shares\\cis'
]
share_names = {
'D:\Tank\Shares\\acad': ['acad', 'V:\\'],
'D:\Tank\Shares\common': ['common', 'X:\\'],
'D:\Tank\Shares\commercial': ['commercial', 'N:\\'],
'D:\Tank\Shares\scans': ['scans', 'J:\\'],
'D:\Tank\Shares\costing': ['costing', 'K:\\'],
'D:\Tank\Shares\marketing': ['marketing', 'M:\\'],
'D:\Tank\Shares\\almar': ['almar', 'O:\\'],
'D:\Tank\Shares\production': ['production', 'P:\\'],
'D:\Tank\Shares\\recreation': ['recreation', 'R:\\'],
'D:\Tank\Shares\photos': ['photos', 'U:\\'],
'D:\\shares\\acad': ['acad', 'V:\\'],
'D:\\shares\\common': ['common', 'X:\\'],
'D:\\shares\\commercial': ['commercial', 'N:\\'],
'D:\\shares\\scans': ['scans', 'J:\\'],
'D:\\shares\\costing': ['costing', 'K:\\'],
'D:\\shares\\marketing': ['marketing', 'M:\\'],
'D:\\shares\\almar': ['almar', 'O:\\'],
'D:\\shares\\production': ['production', 'P:\\'],
'D:\\shares\\recreation': ['recreation', 'R:\\'],
'D:\\shares\\photos': ['photos', 'U:\\'],
}
f = open("/tmp/dhcp.csv")