Page History
Tip | ||
---|---|---|
| ||
|
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
def searchWarnCode(indir): for root, dirs, filenames in os.walk(indir): for f in filenames: fileExt = os.path.splitext(f)[1].replace('.','') if fileExt in extFilter: fileRead( root + '\\' + f ,fileExt) |
...
Tip | ||
---|---|---|
| ||
|
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
def searchWarnCode(indir): for root, dirs, filenames in os.walk(indir): for f in filenames: fileExt = os.path.splitext(f)[1].replace('.','') if fileExt in extFilter: fileRead( root + '\\' + f ,fileExt) |
...