我收到了提到的Rest Exception
DownloadFile(@"/catalog/CSV1.txt", "C:\\Users\\samda\\Desktop\\CSV1.txt");
public static void DownloadFile(string srcPath, string destPath)
{
var stream = _adlsFileSystemClient.FileSystem.Open(_adlsAccountName, srcPath);
var fileStream = new FileStream(destPath, FileMode.Create);
stream.CopyTo(fileStream);
fileStream.Close();
stream.Close();
}