Re: Get contents of directory at given path

2019-11-11 Thread cdunn2001
But if you have large numbers of files, note that you really can't beat the 
speed of UNIX `find`, as it has a special, tricky optimization. I sometimes 
stream `find` into Nim.


Re: Get contents of directory at given path

2019-11-09 Thread drkameleon
Awesome! Thanks a lot!


Re: Get contents of directory at given path

2019-11-09 Thread sky_khan
like this? 
[https://rosettacode.org/wiki/Walk_a_directory/Recursively#Nim](https://rosettacode.org/wiki/Walk_a_directory/Recursively#Nim)


Get contents of directory at given path

2019-11-09 Thread drkameleon
Is there a command for that?

I've been looking for in the library but still haven't spotted anything.