檔案基本操作之獲取檔案基本資訊

2021-07-15 07:24:27 字數 869 閱讀 4662

學習關於檔案的:

1.獲取檔案的開啟路徑。

2.獲取副檔名

3.獲取檔案的建立時間

4.獲取最後修改檔案的時間

5.向richtextbox新增文字

先看下大概介面功能:

**部分:

/// /// 獲取檔案路徑

///

///

///

private void btngetfile_click(object sender,eventargs e)

}/// /// 獲取副檔名

///

///

///

private void btngetfilename_click(object sender, eventargs e)

}/// /// 開啟的檔案建立時間

///

private void btngetfilecreattime_click(object sender,eventargs e)

}/// /// 最後修改檔案的時間

///

private void btnfixfilelasttime_click(object sender,eventargs e)

}/// /// 向richtextbox新增文字

///

///

///

private void btnaddrichtextboxtext_click(object sender,eventargs e)

檔案獲取基本資訊

獲取檔案的基本資訊科通過system.io 命名空間下的 fileinfo 類來實現 lfileinfo類的許多方法與 file 類中的對應方法類似,大多數情況並不重要,但下面的規則有助於確定那種技術更合適 l如果僅進行單一方法呼叫,則可以使用靜態file類上的方法,在此,單一呼叫要更快一些,因為 ...

Go 獲取檔案基本資訊方法

最近一直在寫 go 語言,總結下go獲取檔案資訊的方法 fileinfo,os.stat test.log 修改時間 modtime fileinfo.modtime fmt.println modtime err os.stat test.log if os.isnotexist err file...

使用stat函式獲取檔案基本資訊

函式原型 intstat constchar pathname,structstat buf 函式說明 給stat 函式傳遞乙個 pathname stat 函式返回乙個與此命名檔案有關的資訊結構,該資訊結構中包含檔案的基本資訊。include include include include inc...