0 کاربر و 1 مهمان درحال مشاهده موضوع.
می خوام از یه فایل که متن فارسی داره یه چیزی بخونم و در یه فایل دیگه بنویسم.از wfstream و wcahr_t و wstring استفاده کردم ولی هر بار یه مشکلی وجود داشت.کسی راه حلی برای این کار نداره؟
#include <conio.h>#include <stdio.h>#include <stdlib.h>int main(){ FILE *files,*filed; unsigned char x; char Source[50],Destination[50]; clrscr(); gotoxy(2,2); printf("Please Enter Source of File for Copy:"); gets(Source); gotoxy(2,3); printf("Plesae Enter Destnation and Name for Copy File:"); gets(Destination); files=fopen(Source,"r"); if (!files){ gotoxy(2,5); printf("%s","Source File Not Found!!!"); exit(0); } filed=fopen(Destination,"w"); while (!feof(files)){ x=getc(files); putc(x,filed); } gotoxy(2,5); printf("Copyed one File"); fcloseall();return 0;}