我正在尝试通过python运行hadoop ls。代码如下。
import pyarrow
pyarrow.HadoopFileSystem.ls("/temp1",detail=False)
我收到此错误
Traceback (most recent call last):
File "temp.py", line 3, in <module>
pyarrow.HadoopFileSystem.ls("/temp1",detail=False)
TypeError: ls() missing 1 required positional argument: 'path'
无法提供适当的路径,我也尝试将字符串路径转换为os.path.normpath(“ / temp1”),但没有用。可以指导我如何提供路径。