Код: Выделить всё
// Append data to the DataLake File
file.Append(File.OpenRead(sampleFilePath), 0);
file.Flush(SampleFileContent.Length);
// Reading Data from a DataLake File
Response fileContents = file.Read();
// Listing/Traversing through a DataLake Filesystem
foreach (PathItem pathItem in filesystem.GetPaths())
{
names.Add(pathItem.Name);
}
Подробнее здесь: https://stackoverflow.com/questions/667 ... -data-lake