7 lines
140 B
Nim
7 lines
140 B
Nim
|
|
from algorithm import sorted
|
||
|
|
from os import walkPattern
|
||
|
|
from sequtils import toSeq
|
||
|
|
|
||
|
|
for path in toSeq(walkPattern("*")).sorted:
|
||
|
|
echo path
|