Home  >  Article  >  What is the bin folder

What is the bin folder

王林
王林Original
2020-05-06 09:44:1831608browse

What is the bin folder

bin is the name of the folder. This folder usually stores executable binary files. We usually find files with this name when using larger software. folder.

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. They are automatically generated. The folder is generated depending on which one is selected when starting debugging. Release is smaller than Debug, but The contents stored in these two folders are the same.

2. When you debug the project, project name.exe, project name.pdb, project name will be generated in the Debug folder. vshost.exe, 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. .

The above is the detailed content of What is the bin folder. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn