RVDS: file access with Real View Debugger 4.0?

ssibseya의 이미지

RVDS에서 다음과 같이 했는데

FILE *pFile=NULL;
pFile = fopen(50, (char*)"c:\\temp\\xxx.txt", "wt"); // 50 is file identifier
rv=ferror(pFile);
rv=fprintf(pFile, "test\n");
if(pFile){ fclose(pFile); pFile = NULL;}

파일이 win7 호스트 시스템 어디를 찾아봐도 없어요.
어떻게 해야 하나요?