Examlex

Solved

Fill in the Blank in the Following Code Snippet That

question 67

Multiple Choice

Fill in the blank in the following code snippet that displays the directory structure for the current directory, i.e., including the descendants of the current directory that are directories. Fill in the blank in the following code snippet that displays the directory structure for the current directory, i.e., including the descendants of the current directory that are directories.    A) Stream<Path> listing = Files.list(Paths.get(  ) )  B) Stream<Path> listing = Files.walk(Paths.get(  ) )  C) Stream<String> listing = Files.walk(Paths.get(  ) )  D) Stream<Path> listing = Files.walk(  )


Definitions:

Related Questions