STAT(Signal transducers and activators of transcription)(信號傳導及轉錄激活因子),含有SH2和SH3結構域,可與特定的含磷酸化酪氨酸的肽段結合。當STAT被磷酸化後,發生聚合成為同源或異源二聚體形式的活化的轉錄激活因子,進入胞核內與靶基因啟動子序列的特定位點結合,促進其轉錄。已克隆成功4種JAK(JAK13和Tyk2)與7種STAT(STAT1,STAT2,STAT3,STAT4,STAT5a,STAT5b,STAT6)。
Stat,拉丁文 statim的縮寫,表示"即刻,立即",常被套用於醫院的急診室,表示急診樣品的意思,該詞也常見於醫療器械急診功能表述。
函式名: stat(const char* path, struct stat* buf )
功 能: 得到檔案的信息,將其保存在buf結構中,buf的地址以參數形式傳遞給stat。
基本介紹
- 中文名:信號傳導及轉錄激活因子
- 外文名:Signal transducers and activators of transcription
- 縮寫:STAT
- 組成:SH2和SH3結構域
基本介紹
舉例
//crt_stat.c//Thisprogramusesthe_statfunctionto//reportinformationaboutthefilenamedcrt_stat.c.#include<time.h>#include<sys/types.h>#include<sys/stat.h>#include<stdio.h>#include<errno.h>intmain(void)struct_statbuf;intresult;chartimebuf[26];char*filename="crt_stat.c";errno_terr;//Getdataassociatedwith"crt_stat.c":result=_stat(filename,&buf);//Checkifstatisticsarevalid:if(result!=0)perror("Problemgettinginformation");switch(errno)caseENOENT:printf("File%snotfound.\n",filename);break;caseEINVAL:printf("Invalidparameterto_stat.\n");break;default:/*Shouldneverbereached.*/printf("Unexpectederrorin_stat.\n");else//Outputsomeofthestatistics:printf("Filesize:%ld\n",buf.st_size);printf("Drive:%c:\n",buf.st_dev+'A');err=ctime_s(timebuf,26,&buf.st_mtime);if(err)printf("Invalidargumentstoctime_s.");exit(1);printf("Timemodified:%s",timebuf);
結構體
structstatfinfo;stat(sFileName,&finfo);intsize=finfo.st_size;structstatmode_t st_mode;//檔案對應的模式,檔案,目錄,許可權等ino_t st_ino;//i-node節點號dev_t st_dev;//設備號碼dev_t st_rdev;//特殊設備號碼nlink_t st_nlink;//檔案的硬連結數uid_t st_uid;//檔案所有者gid_t st_gid;//檔案所有者對應的組off_t st_size;//普通檔案,對應的檔案位元組數time_t st_atime;//檔案最後被訪問的時間time_t st_mtime;//檔案內容最後被修改的時間time_t st_ctime;//檔案狀態(屬性)改變時間blksize_t st_blksize;//檔案內容對應的塊大小blkcnt_t st_blocks;//檔案內容對應的塊數量
命令
PHP語言
簡介
說明
返回格式
數字下標 | 關聯鍵名(自 PHP 4.0.6) | 說明 |
---|---|---|
0 | dev | device number - 設備名 |
1 | ino | inode number - inode 號碼 |
2 | mode | inode protection mode - inode 保護模式 |
3 | nlink | number of links - 被連線數目 |
4 | uid | userid of owner - 所有者的用戶 id |
5 | gid | groupid of owner- 所有者的組 id |
6 | rdev | device type, if inode device * - 設備類型,如果是 inode 設備的話 |
7 | size | size in bytes - 檔案大小的位元組數 |
8 | atime | time of last access (unix timestamp) - 上次訪問時間(Unix 時間戳) |
9 | mtime | time of last modification (unix timestamp) - 上次修改時間(Unix 時間戳) |
10 | ctime | time of last change (unix timestamp) - 上次改變時間(Unix 時間戳) |
11 | blksize | blocksize of filesystem IO * - 檔案系統 IO 的塊大小 |
12 | blocks | number of blocks allocated - 所占據塊的數目 |