c打开电脑文件夹
发布时间: 2024-01-03 01:40:24
① 怎么打开C盘默认共享文件夹(C$)!!
1、首先打开电脑,之后点击电脑桌面中的开始菜单,如下图所示。
② c语言opendir打开文件夹,完整程序
#include<stdio.h>
#include <sys/types.h>
#include <dirent.h>
int main()
{
DIR *dfd;
dfd = opendir("文件夹名称");
closedir(dfd);
//想读取文件夹,用readdir
return 0;
}
③ c语言如何打开文件
你只要把下面代码的file_path改成你要输出的文件就可以了。注意,一般window下的文件路径都是一个反斜杠,但是在file_name的字符串中,所有的反斜杠都写成两个反斜杠。比如
E:\abc\WTK\SW\source.txt
你要写成
E:\\abc\\WTK\\SW\\source.txt
#include <stdio.h>
#include <string.h>
main()
{
FILE *fp;
char ch;
char *file_path = "C:\\test\\myfile.txt";
if((fp=fopen(file_path,"r"))==NULL)
{
printf("\nSorry, Can't open the file! @_@\n");
exit(0);
}
else
{
while((ch=fgetc(fp))!=EOF)
{ printf("%c",ch); }
fclose(fp);
}
getch();
}
是否可以解决您的问题?
热点内容