an identifying name given to a computer file
(计算机)文件名。
n. 文件名
The grassroots employee changed the filename as required by the superior.
这位基层员工按上级要求更改了文件名。
Please change the filename with your personal information to your own name.
请将带有私人信息的文件名改成自己的名字。
This naming format for computer filenames does not meet the requirements of this examination.
这种计算机文件名的命名格式不符合本次考试的要求。
Displays filename on screen.
在屏幕上显示文件名的内容。
filename: The name of the document.
filename:文档名称。
Modify the XML filename.
更改 XML 文件名。
Listing 3 is the declaration of Filename.
清单3是Filename的声明。
Is it a filename?
它是一个文件名吗?
FILENAME_MAX是C语言标准库stdio.h中的一个宏常量,它表示我们所使用的编译器所支持的最长的合法文件名,在VC++6.0中这个值为260。\n#include <stdio.h>\n#include <stdlib.h>\n#include <time.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n#include <errno.h>\ntypedef struct _stat StatusInfo;\n#define __STR(const_num) # const_num\n#define STR(const_num) __STR(const_num)\nint main(void)\n{\nchar filename[FILENAME_MAX] = { '\\0' };\nStatusInfo buf;\nStatusInfo *pbuf = &buf;\nfputs(\Please input file name >>> \, stdout);\nscanf(\%\STR(FILENAME_MAX)\s\, filename);\nif ( _stat(filename, &buf) != 0 ) {\nswitch (errno) {\ncase ENOENT:\nfprintf(stderr, \Error: File %s not found.\\n\, filename);\nbreak;\ncase EINVAL:\nfprintf(stderr, \Error: Invalid parameter to _stat.\\n\);\nbreak;\ndefault:\nfprintf(stderr, \Error: Unexpected error in _stat.\\n\);\nbreak;\n}\n} else {\nprintf(\File size : %ld bytes\\n\, pbuf->st_size);\nprintf(\Drive : %c:\\n\, pbuf->st_dev + 'A');\nprintf(\Time modified: %s\\n\, ctime(&pbuf->st_mtime));\n}\nreturn EXIT_SUCCESS;\n}
an identifying name given to a computer file
(计算机)文件名。