码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi中的文件扩展名

时间:2014-12-21 20:38:19      阅读:504      评论:0      收藏:0      [点我收藏+]

标签:

Filename Extensions in Delphi

 

http://delphi.about.com/od/beginners/a/aa032800a.htm

 

Try building a small test project ... whoa ... a typical Delphi application consists of many different file types.

Delphi employs a number of files for its configuration, some global to the Delphi environment, some project specific. Various tools in the Delphi IDE store data in files of other types.

The following list describes the files and their filename extensions that Delphi creates for a typical stand-alone application, plus a dozen more.

 

Also, get to know what Delphi generated files should be stored in a source control system.

Delphi Project Specific

.PAS - Delphi Source File 
PAS should be stored in Source Control 版本控制
In Delphi, PAS files are always the source code to either a unit or a form. Unit source files contain most of the code in an application. The unit contains the source code for any event handlers attached to the events of the form or the components it contains. We may edit .pas files using Delphi‘s code editor. Do not delete .pas files.

.DCU - Delphi Compiled Unit 个人认为 如果用到的单元 本来就只有DCU,应该 版本控制
A compiled unit (.pas) file. By default the compiled version of each unit is stored in a separate binary-format file with the same name as the unit file, but with the extension .DCU (Delphi compiled unit). For example unit1.dcu contains the code and data declared in the unit1.pas file. When you rebuild a project, individual units are not recompiled unless their source (.PAS) files have changed since the last compilation, or their .DCU files cannot be found. Safely delete .dcu file because Delphi recreates it when you compile the application.

 

.DFM - Delphi Form
DFM should be stored in Source Control 版本控制
These files are always paired with .pas files. Dfm file contains the details (properties) of the objects contained in a form. It can be view as text by right clicking on the form and selecting view as text from the pop-up menu. Delphi copies information in .dfm files into the finished .exe code file. Caution should be used in altering this file as changes to it could prevent the IDE from being able to load the form. Form files can be saved in either binary or text format. The Environment Options dialog lets you indicate which format you want to use for newly created forms. Do not delete .dfm files.

.DPR - Delphi Project
DPR should be stored in Source Control 版本控制
The .dpr file is the central file to a delphi project (one .dpr file per a project), actually a Pascal source file. It serves as the primary entry point for the executable. The dpr contains the references to the other files in the project and links forms with their associated units. Although we can modify the .dpr file , we should not modify it manually. Do not delete .dpr files.

.RES - Windows Resource File 个人认为应该 版本控制
A Windows resource file, generated automatically by Delphi and required by the compilation process. This binary-format file contains the version info resource (if required) and the application’s main icon. File may also contain other resources used within the application but these are preserved as is.

.EXE - Application Executable 个人认为 版本控制
The first time we build an application or a standard dynamic-link library, the compiler produces a .DCU file for each new unit used in your project; all the .DCU files in your project are then linked to create a single .EXE (executable) or .DLL file. This binary-format file is the only one (in most cases) you have to distribute to your users. Safely delete your projects .exe file because Delphi recreates it when you compile the application.

.~?? - Delphi Backup Files
Files with names ending in .~?? (e.g. unit2.~pa) are backup copies of modified and saved files. Safely delete those files at any time, however you might want to keep the for recovering damaged programming.

.DLL - Application Extension
Code for dynamic link library. A dynamic-link library (DLL) is a collection of routines that can be called by applications and by other DLLs. Like units, DLLs contain sharable code or resources. But a DLL is a separately compiled executable that is linked at runtime to the programs that use it. Do not delete .dll file unless you wrote it. Go see Dll‘s and Delphifor more info on programming with DLL‘s with Delphi.

.DPK - Delphi Package
DPK should be stored in Source Control 版本控制
This file contains the source code for a package, which are most often collection of multiple units. Package source files are similar to project files, but they are used to construct special dynamic-link libraries called packages. Do not delete .dpk files.

.DCP
This binary image file consists of the actual compiled package. Symbol information and additional header information required by the IDE are all contained within the .dcp file. The IDE must have access to this file in order to build a project. Do not delete .dcp files.

.BPL or .DPL
This is the actual design-time or run-time package. This file is a Windows DLL with Delphi-specific features integrated into it. This file is essential for deployment of an application that uses a package. In version 4 and above this is ‘Borland package library‘ in version 3 it‘s ‘Delphi package library‘. See BPL vs. DLL for more info on programming with packages.

 

The following list describes the files and their filename extensions that Delphi IDE creates for a typical stand-alone application

   IDE Specific
.BPG, .BDSGROUP - Borland Project Group (Borland Developer Studio Project Group)
BPG should be stored in Source Control 版本控制
Create project groups to handle related projects at once. For example, you can create a project group that contains multiple executable files such as a .DLL and an .EXE.

  

.DCR
DCR should be stored in Source Control 版本控制
Delphi component resource files contain a component‘s icon as it appears on the VCL palette. We may use .dcr files when construction our own custom components. Do not delete .dpr files.

.DOF
DOF should be stored in Source Control 版本控制
This text file contains the current settings for project options, such as compiler and linker settings, directories, conditional directives, and command-line parameters. The only reason to delete .dof file is to revert to standard options for a project.

.DSK
This text file stores information about the state of your project, such as which windows are open and what position they are in. This allows you to restore your project’s workspace whenever you reopen the Delphi project.

.DRO
This text file contains information about the object repository. Each entry in this file contains specific information about each available item in the object repository.

.DMT
This proprietary binary file contains the shipped and user-defined menu templates information.

 

.TLB
The file is a proprietary binary type library file. This file provides a way for identifying what types of objects and interfaces are available on an ActiveX server. Like a unit or a header file the .TLB serves as a repository for necessary symbol information for an application.

.DEM
This text file contains some standard country-specific formats for a TMaskEdit component.

 

 

The list of the file extensions you see when Developing with Delphi continues ....

.CAB
This is the file format that Delphi offers its users for web deployment. The cabinet format is an efficient way to package multiple files.

.DB
Files with this extension are standard Paradox files.

.DBF
Files with this extension are standard dBASE files.

.GDB
Files with this extension are standard Interbase files.

.DBI
This text file contains initialization information for the Database Explorer.

 

   Caution
Never delete files with names ending in .dfm, .dpr, or .pas, unless you want to throw away your project. These files contain the application‘s properties and source code. When backing up an application, these are the critical files to save.

Delphi中的文件扩展名

标签:

原文地址:http://www.cnblogs.com/CodeGear/p/4176911.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!