int _tmain(int argc, _TCHAR* argv[])
{

	create_bob_txt();

	return 0;
}
Beispiel #2
0
int _tmain(int argc, _TCHAR* argv[])
{
	create_bob_txt();
	copy_bob_txt();

	CloseHandle(filehandle);

	DeleteFile(fname);

	return 0;
}
Beispiel #3
0
int _tmain(int argc, _TCHAR* argv[])
{
	create_bob_txt();
	copy_bob_txt();
	printf("ReadFile() api\n");
	readapi_bob2();
	printf("Memory Mapped I/O\n");
	read_file_using_memory_map();
	delete_bob_txt();

	return 0;
}
Beispiel #4
0
int main()
{
	wchar_t bob_txt[FILE_NAME_SIZE];
	wchar_t bob2_txt[FILE_NAME_SIZE];

	get_full_path(bob_txt, bob2_txt);

	create_bob_txt(bob_txt);

	copy_bob_txt(bob_txt, bob2_txt);

	read_bob_txt(bob2_txt);

	delete_bob_txt(bob_txt, bob2_txt);

	return 0;
}
int main(int argc, char **argv) {

	create_bob_txt();
	return 0;
}
Beispiel #6
0
int main(void)
{
	create_bob_txt();
	return 0;
}
Beispiel #7
0
int main(void)
{
	create_bob_txt();
	copy_bob();
}
Beispiel #8
0
void main() {
	create_bob_txt();
}
Beispiel #9
0
int main(void)
{
	puts("bob1이 만든 파일 bob2.txt를 읽어옵니다.\n");
	create_bob_txt();
}