Stat
類型的用途是什麼?就像操作的狀態一樣?我在DXL參考手冊9.6中找不到太多東西。什麼Stat類型存儲在門DXL中?
使用的操作系統,這使得DXL程序來 提供的統計API 的統計數據類型的工作決定的文件和目錄的狀態的功能
爲了更清楚我將發佈它的用途之一:
/************************************
isDirectory
Returns true if string parameter is a valid directory
************************************/
bool isDirectory(string dn)
{
Stat s = create dn
if (null s) return false
if (directory s)
{
delete s
return true
}
delete s
return false
}
還是這樣的代碼:
/************************************
getFileSize
returns the size (in bytes) of a file. note that files smaller than
the block size on the disc still take up a whole block.
************************************/
int getFileSize(string fn)
{
int fSize = 0
Stat s = create fn
if (null s) return(0)
fSize = size(s)
if (fSize < BLOCK_SIZE) fSize = BLOCK_SIZE
delete s
return(fSize)
}
編輯:
或者燙髮等:
改性(STAT)
布爾符號(STAT)日期
日期訪問(STAT)
統計創建(Symbolic__)
空隙刪除(STAT)
串用戶(STAT)
INT大小(STAT)
請注意不要製作新的,過於寬泛的標籤,如'create'。謝謝! –
標籤上只有兩個問題[門9.5],其中之一就是這個,這真的是門9.6。我會從這個中刪除[doors-9.5]標籤。如果有任何反對意見,請隨時恢復標籤,我不會再刪除它。 – icedwater