bin file: 1. The bin directory stores the executable files after project debugging; 2. When debugging the project, the project name [.exe] and project name [ .pdb], project name [.vshost.exe], double-click [.exe] to run the project.
#The operating environment of this article: Windows 7 system, Dell G3 computer.
Bin is the name of the file, which generally stores executable binary files, so we usually find a folder with this name when using larger software.
Function:
1. The executable files after project debugging are stored in the bin directory. There are two folders under bin, one is Debug and the other is Release, both are automatically generated. The folder is generated depending on which one is selected when starting debugging. Release is smaller than Debug, but it is stored in these two folders. The things are the same.
2. When you debug the project, project name.exe, project name.pdb, project name.vshost.exe will be generated in the Debug folder. Double-click the .exe to run your project. In addition to these, there are also some project dependencies in this folder, such as *.dll, etc. Some of them need to be added to the Debug folder yourself, such as *.ini, *.rpt, etc.
Related video recommendations: PHP programming from entry to proficiency
The above is the detailed content of What is the bin file for?. For more information, please follow other related articles on the PHP Chinese website!