*(  ̄皿 ̄)/#_
1.项目中各种文件的定义
文件类型在项目开发中是必须要了解的。
文件类型 | 文件后缀名 | 文件说明 |
---|---|---|
Active Server Page | asp | 活动服务器页文件 |
Binary File | /empty | 二进制文件 |
Bitmap File | bmp | 位图文件 |
C/C++ Header File | h | 头文件 |
C++source File | cpp | C++源文件 |
Cursor File | cur | 光标文件 |
HTML page | html/htm | 超文本文件 |
Icon File | ico | 图标文件 |
Macro File | dsm | 宏文件 |
Resource Script | rc | 资源脚本文件 |
Resource Template | rct | 资源模板文件 |
SQL Script File | sql | sql脚本文件 |
Text file | txt | 文本文件 |
Make file | mak | make文件的工程 |
MFC AppWizard | dll | MFC动态链接库 |
MFC AppWizard | exe | MFC应用程序 |
New Database Wizard | db | SQL数据服务器 |
Utility Project | dsp | 空白工程 |
Block Workspace | dsw | 工作组 |
Definine:
Cursor File:
A file with the CUR file extension is a static Windows Cursor file. They’re still images that are identical to .ICO (Icon) files in every way aside from the different extension. Animated cursor files have the .ANI extension instead.
Different cursor files are seen in the Windows operating system when the mouse pointer is doing certain tasks, like as a capital “i” when positioned over text or as an hourglass when something’s loading.
Macro File
宏文件,究其根,是用VB编写的一段程序,用来执行一定的命令来简化操作。
A macro is an automated input sequence that imitates keystrokes or mouse actions. A macro is typically used to replace a repetitive series of keyboard and mouse actions and are common in spreadsheet and word processing applications like MS Excel and MS Word. The file extension of a macro is commonly .MAC.
此外,还有:
ini 配置文件,一般用于配置项目中的各种资源和字符
bin 二进制文件,用于存放资源
dat 数据文件
sys 系统文件,用于windows系统配置
bak 备份文件
obj 源代码编辑后生成的中间文件
等
2.项目文件夹的定义
bin | 执行文件和最终生成的各类文件 |
---|---|
lib | 静态库文件 |
inc | 头文件 |
src | 源文件 |
doc | 项目相关文件 |
tmp | 临时文件 |
转载:https://blog.csdn.net/treblez/article/details/102540991