1、file是什么意思
file是什么意思
2、如何打开file文件
File文件属于文本文件,是Ps只支持图象文件,所以不能打开!
就是pagefile文件,pagefile.sys是个系统文件(在Windows 98下为Win386.swp),它的大小经常自己发生变动,小的时候可能只有几十兆,大的时候则有数百兆,所以不必怀疑,pagefile.sys是Windows下的一个虚拟内存,它的作用与物理内存基本相似,但它是作为物理内存的“后备力量”而存在的,也就是说,只有在物理内存已经不够使用的时候,它才会发挥作用。我们都知道,虽然在运行速度上硬盘不如内存,但在容量上内存是无法与硬盘相提并论的。当运行一个程序需要大量数据、占用大量内存时,内存就会被“塞满”,并将那些暂时不用的数据放到硬盘中,而这些数据所占的空间就是虚拟内存。
另外:
英文原义:File Protocol
中文释义:本地文件传输协议
注解:File协议主要用于访问本地计算机中的文件,就如同在Windows资源管理器中打开文件一样。
应 用:要使用File协议,基本的格式如下:file:///文件路径,比如要打开F盘flash文件夹中的1.swf文件,那么可以在资源管理器或IE地址栏中键入:file:///f:/flash/1.swf并回车。
另:file也表示文件。
3、file的意思
file的意思如下:
1、文件夹(或箱、柜等);(计算机的)文档;档案;纵列;锉刀;(与某政策领域相关的)议题,职责。
2、(把文件等)归档,存档;提起(诉讼),提出(申请);发送(消息或报道)给报社;列队行进;锉平。
例句
1、Be sure to save the revised version of the file under a new filename.
确保将改过的文件版本另存在一个新的文件名下。
2、He had to rush back to the office and file a housing story before the secretaries went home.
他不得不赶回办公室,在秘书们回家之前提交一份有关住房的报道。
3、Iselectedafileand pressedthedeletekey.
我选定了一份文件,然后按下了删除键。
4、file怎么读
英音[fa?l]美音[fa?l]
file 基本解释
vt.提出(离婚诉讼或其他讼案);把…归档;用锉锉;发稿,寄给报社
vi.发送(报道给报社);排成一行行走;提出申请
n.文件夹;卷宗;纵列;锉刀
file 记忆方法
file相关的词根或词缀是:filfili
file行列;档案n.
fil 线条 + e → 成一直线 → 行列
file 变化形式
复数: files
第三人称单数: files
过去式: filed
过去分词: filed
现在分词: filing
易混淆的单词: FILE
中文词源
file 文件 file 锉刀
来自拉丁语filum,线,词源同 filament. 引申词义文件,文献,因古代文献多用线缝合。 来自PIE*peig, 砍,切,字母g脱落,词源同pigment, picture. 用做工具名。
file 用法和例句
Long file names are harder to read .
长的文件名很难读。
Estonians track which bureaucrats have looked at their file .
爱沙尼亚人民可以追踪到哪些***机构查看过他们的档案。
His defence counsel declared he would file an appeal .
他的辩护律师宣布当事人将会提出上诉。
If I \'m right , this circuitry will match the diagram I have in my file .
如果我没说错,这个电路图与我卷宗里的那个图表真好一致。
And that is likely the culprit for his lukewarm endorsement from the microsoft rank and file .
这也许就是他得到了微软不愠不火的评价和归档的罪魁祸首。
5、C语言中,FILE是关键字吗?
: /* Demonstrates the fprintf() function. */
2: #include
3: #include
4:
5: void clear_kb(void);
6:
7: int main( void )
8: {
9: FILE *fp;
float data[5];
int count;
char filename[20];
puts("Enter 5 floating-point numerical values.");
for (count = 0; count < 5; count++)
scanf("%f", &data[count]);
/* Get the filename and open the file. First clear stdin */
/* of any extra characters. */
clear_kb();
puts("Enter a name for the file.");
gets(filename);
if ( (fp = fopen(filename, "w")) == NULL)
{
fprintf(stderr, "Error opening file %s.", filename);
exit(1);
}
/* Write the numerical data to the file and to stdout. */
for (count = 0; count < 5; count++)
{
fprintf(fp, "\
data[%d] = %f", count, data[count]);
fprintf(stdout, "\
data[%d] = %f", count, data[count]);
}
fclose(fp);
printf("\
");
return 0;
}
void clear_kb(void)
/* Clears stdin of any waiting characters. */
{
char junk[80];
gets(junk);
}
请问:在C语言中,第9行 FILE 是关键字还是只是一个符号常量?如果不是,它是什么,有什么作用?