HDFS下的基本檔案操作

2021-07-08 10:15:49 字數 524 閱讀 1905

以下是基於hadoop 2.6.0

1、建立目錄

hdfs dfs -mkdir test1
2、刪除目錄

hdfs dfs -rm

-r test1

3、檢視檔案

#列出hdfs下的所有檔案

hdfs dfs -ls

#列出hdfs下test1資料夾下的內容

hdfs dfs -ls test1

#遞迴列出test1下的所有內容

hdfs dfs -ls -r test1

#檢視檔案內容

hdfs dfs -cat test1.log

4、上傳本地檔案到hdfs

#將test1.log檔案上傳到test1資料夾下

hdfs dfs -put test1.log test1

hdfs dfs -get test1/test1.log li.log

基本檔案的操作

將程式中的資料寫入檔案中 開啟檔案 file open date 1.text w encoding utf 8 程式中有乙個字串 message hello 世界 將字串寫入程式中 file.write message 關閉檔案 將檔案中的資料讀取到程式中 開啟檔案 file open date ...

基本檔案的操作

檔案是作業系統為使用者或應用程式提供的乙個讀寫硬碟的虛擬單位。檔案的操作是基於檔案,即檔案的操作核心就是 讀和寫。也 就是只要我們想要操作檔案就是對作業系統發起請求,然後由作業系統將使用者或應用程式對檔案的讀寫操作轉換成集體的硬碟指令 比如控制碟片轉動,控制機械手臂移動,以此來讀取資料 記憶體無法永...

python基本檔案操作

開啟檔案,引數為檔名和訪問方式 fo open foo.txt w 關閉檔案 fo.close write函式 向檔案中新增 此方法是新增的方法,每次新增會刪除之前的內容 追加內容的話開啟方式為a fo.write 你好 n我是王 宇 n是一名研究生 然後開啟檔案可以看到如下內容 writeline...