Logo

Programming-Idioms

History of Idiom 180 > diff from v5 to v6

Edit summary for version 6 by steenslag:
[Ruby] underscore in comment does not work

Version 5

2019-01-11, 17:06:25

Version 6

2019-01-11, 17:07:11

Idiom #180 List files in directory

Create list x containing the contents of directory d.

x may contain files and subfolders.
No recursive subfolder listing.

Idiom #180 List files in directory

Create list x containing the contents of directory d.

x may contain files and subfolders.
No recursive subfolder listing.

Extra Keywords
folder ls dir listing
Extra Keywords
folder ls dir listing
Code
x = Dir.children(d)
Code
x = Dir.children(d)
Comments bubble
_. and _.. not included
Comments bubble
. and .. not included