gpt4 book ai didi

c - 如何在c中获取文件的文件路径(how to do this in windows)

转载 作者:行者123 更新时间:2023-11-30 21:01:04 25 4
gpt4 key购买 nike

我需要获取我最近在 c 中创建的文件的文件路径

FILE *pFile;
pFile=fopen("client.txt","w");//create and open file in write mode

现在如何获取client.txt的文件路径?

最佳答案

您需要当前工作目录。 getcwd将为您做这件事。

这应该有效

 #include <unistd.h>
#include <linux/limits.h>

char path[MAX_PATH + 1];
char *cwd = getcwd(path, MAX_PATH);

关于c - 如何在c中获取文件的文件路径(how to do this in windows),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37126760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com