我想知道是否可以在C中切换驱动程序。
例如:
/*Example*/
#include <stdio.h>;
int main(){
SwitchDrive("C:\");
FILE *c=fopen("example.txt","w");
fprintf(c,"Example");
fclose(c);
SwitchDrive("D:\");
FILE *d=fopen("d_drive.txt","w");
fprintf(d,"Example");
fclose(d);
return 0;
}
最佳答案
您需要使用SetCurrentDirectory()
。
关于c - 如何在C中设置驱动器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53030367/