Giap wrote:
> *I am writing a program using vc++. Now i need to move the file i
> create to other place but i failed to do that. Can anyone pls give me
> a hint? *
I have fix myself..hehe..
use DeleteFile() is good enuf..
William DePalo [MVP VC++] - 30 Jan 2005 03:30 GMT
>> *I am writing a program using vc++. Now i need to move the file i
>> create to other place but i failed to do that. Can anyone pls give me
>> a hint? *
> I have fix myself..hehe..
> use DeleteFile() is good enuf..
Well, if you still want to move a file you can do that with MoveFile() and
MoveFileEx().
If you want your deletion to use the Recycle Bin then you can use
SHFileOperation().
Regards,
Will