what is fd
from https://ja.wikipedia.org/wiki/%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E8%A8%98%E8%BF%B0%E5%AD%90
ファイル記述子(ファイルきじゅつし、File Descriptor)とは、プログラミングにおいてファイルへの参照を抽象化したキーである。ファイルディスクリプタあるいはFDとも呼ばれる。Microsoft Windowsでは、「ファイルハンドル」がほぼ相当するが、技術的には異なるオブジェクトである。
Example
int tmpFD;
// Com1 を開いて初期設定
if ((tmpFD = (open("/dev/ttyUSB0", O_RDWR | O_NOCTTY | O_NONBLOCK)) )<0)
{
printf("open com : %s fail! \n",com);
return 0;
}
ファイル記述子(ファイルきじゅつし、File Descriptor)とは、プログラミングにおいてファイルへの参照を抽象化したキーである。ファイルディスクリプタあるいはFDとも呼ばれる。Microsoft Windowsでは、「ファイルハンドル」がほぼ相当するが、技術的には異なるオブジェクトである。
Example
int tmpFD;
// Com1 を開いて初期設定
if ((tmpFD = (open("/dev/ttyUSB0", O_RDWR | O_NOCTTY | O_NONBLOCK)) )<0)
{
printf("open com : %s fail! \n",com);
return 0;
}
留言
張貼留言