> For the complete documentation index, see [llms.txt](https://applezu.netdpi.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://applezu.netdpi.net/linux-prog/c-directory.md).

# C 目錄相關

取得程式當前目錄 ...

```c
#include <unistd.h>

char *getcwd(char *buf, size_t size); 
char *get_current_dir_name(void); 
char *getwd(char *buf);
```
