使用Python在Hadoop中搜索文件

时间:2015-06-15 16:58:33

标签: python hadoop

我正在尝试在Hadoop目录中搜索包含特定前缀的文件。现在我有这行代码在本地搜索:

onlyfiles = [ f for f in listdir(mypath) if isfile(join(mypath,f)) ]

我相信我已经找到了一个适用于Hadoop的Java等价物:How to list all files in a directory and its subdirectories in hadoop hdfs

我可以使用Python等价物吗?

0 个答案:

没有答案