Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: obj 和 bin 文件夹(由 Visual Studio 创建)用于什么?
任何项目的默认输出路径都是 Visual Studio is bin/Debug,但我注意到还会生成文件夹,该obj文件夹再次包含文件。有人能告诉我为什么会生成这个文件夹吗?dllpdb
bin/Debug
obj
dll
pdb
“obj”文件夹用于存储临时对象文件和其他用于创建最终二进制文件的文件。
在这里进一步阅读