linux中
open() 用於開啟已經存在的檔案或者建立乙個新檔案
create() 用於建立乙個新檔案。
int open(const char *pathname,int flag);
int open(const char *pathname,int flag,mode_t mode);
// *注:pathname 不能超過1024個位元組,否則會被截斷。
flag 常用分類: 顧名思義。
mode 分類
常見的,
s_irwxu 00700 使用者有讀寫執行許可權
s_iruse 00400
s_iwuse 00200
s_ixuse 00100
#include
用法與open類似
#include #include int creat(const char *pathname ,mode_t mode);
成功返回 0 ,失敗返回-1;
#include int close();
IO 建立檔案
public class demo03 catch exception e public static void test3 throws ioexception,interruptedexception 刪除檔案 boolean flag src.delete system.out.println...
建立檔案鏈結
硬連線 硬連線指通過索引節點來進行連線。在linux的檔案系統中,儲存在磁碟分割槽中的檔案不管是什麼型別都給它分配乙個編號,稱為索引節點號 inode index 在linux中,多個檔名指向同一索引節點是存在的。一般這種連線就是硬連線。硬連線的作用是允許乙個檔案擁有多個有效路徑名,這樣使用者就可以...
建立檔案練習
test 用命令和正規表示式按照要求建立檔案 用一條命令建立12個檔案westos classx linuxy x的數值範圍1 2,y的數值範圍為1 6 這些檔案都包含在root使用者桌面的study目錄中 用一條命令建立8個檔案redhat versionx x的範圍是1 8 redhat ver...