1. 程式人生 > >C/C++中main的argv[0]的用途

C/C++中main的argv[0]的用途

You’ll notice that argv[0] is the path and name of the program itself. This allows the program to discover information about itself.

筆者想到了一個用途。那就是可通過argv[0]可知道當前執行的exe檔案是DEBUG目錄下的還是RELEASE目錄下的。還有,如果該程式有多個版本且存在不同目錄下,也可據此區分。

以後繼續留意其他用途。