|
|
|
|
|
<hdfsConnection variable>.List (Function) In french: <Variable hdfsConnexion>.Liste Lists the content of a directory found on a Hadoop server. // Connection MyConnection is hdfsConnection MyConnection.namenode = "MyServer" MyConnection.User = "Admin" MyConnection.OpenConnection() // Retrieve the directory content Content is array of hdfsStatus = MyConnection.List("/") // Display the directory content FOR EACH Elem OF Content Trace(Elem.Path) END
Syntax
<Result> = <Connection>.List(<Path>)
<Result>: Array Array of hdfsStatus variables corresponding to the directory content. <Connection>: hdfsConnection variable Name of the hdfsConnection variable that corresponds to connection to the Hadoop server. <Path>: Character string Absolute path of the directory on the Hadoop server whose content will be listed. This path is case sensitive.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|