FileDateTime Function
傳回一個字串,該字串包含建立檔案或最後一次修改檔案的日期和時間的。
語法:
FileDateTime (Text As String)
參數:
Text:包含明確 (無萬用字元) 檔案規格的任意字串型表示式。您也可以使用 URL 表示法。
此函式確定建立檔案或最後一次修改檔案的精確時間,傳回結果的格式為「MM.DD.YYYY HH.MM.SS」。
You can set the locale used for controlling the formatting numbers, dates and currencies in LibreOffice Basic in LibreOffice - PreferencesTools - Options - Languages and Locales - General. In Basic format codes, the decimal point (.) is always used as placeholder for the decimal separator defined in your locale and will be replaced by the corresponding character.
這同樣適用於日期、時間和貨幣等格式的語言環境設定。Basic 格式代碼將依語言環境設定進行解譯和顯示。
示例:
Sub ExampleFileDateTime
MsgBox FileDateTime("C:\autoexec.bat")
End Sub