Hi,
hope someone can point me into the right direction:
proc Getmethefiles*(wo:string ): seq[tuple] {.exportpy.} =
- for item in walkDirRec(wo):
- result.add splitFile(item)
COMPILE ERROR: cannot instantiate: 'result:type'
Ideally I wan to collect the tuples from "splitFile(item)" ... and return the collection when its done traversing the directory "wo"
Thanks in advance :)