Linux下檔案的相關操作

2021-08-07 08:34:22 字數 575 閱讀 7570

ls #檢視當前目錄

ls -l #檢視當前目錄詳細資訊

ls -al #包括隱藏檔案在內的詳細資訊

cd #切換目錄

cd /usr/local #絕對路徑

cd ../../../ #相對路徑 上一層目錄的上一層目錄的上一層 目錄

cd . 或者 cd ./ #還是在當前目錄下

touch #新建檔案 可以建立多個

vim 1.php #建立檔案,並編輯

rm 檔名 #刪除檔案 但是有提示

rm -f 檔名 #強制刪除 沒有提示

mkdir #建立目錄 資料夾

[root@xiao ~]# mkdir /root/huwei/xiaohuwei/xiaoxiaohuwei

mkdir: 無法建立目錄」/root/huwei/xiaohuwei/xiaoxiaohuwei」: 沒有那個檔案或目錄

[root@xiao ~]# mkdir -p /root/huwei/xiaohuwei/xiaoxiaohuwei #-p表示遞迴建立

rm -rf 目錄名 #強制刪除目錄 不提示

c winform下檔案操作相關

以下對winform下開啟目錄獲取檔案做個記錄 openfiledialog openfiledialog new openfiledialog openfiledialog.initialdirectory c desktop 初始化開啟時的目錄 openfiledialog.filter 文字檔...

Linux 下檔案操作

include include include include include include include include include define s 100 void treedisplay void treecreat void filecreatopen void fileread ...

Linux下檔案操作

1.linux下檔案操作的途徑 1 通過底層檔案系統來實現,要求熟悉底層檔案系統的結構,並且編寫大量 來完成 2 通過呼叫shell來完成,訪問shell介面,但shell返回的資訊不便於程式的分析 3 通過系統呼叫來實現,能夠完成相應的功能,並且返回足夠的資訊 2.linux下檔案操作的方式 1 ...