hi everyone
Now i met the question that I cannot get the attribute of the Folder
I seted the folder read-only and tried
if((GetFileAttributes (folderpath) & FILE_ATTRIBUTE_READONLY) != 0)
{
MessageBox("readonly");
}
else
{
MessageBox("else");
}
And every time I got the message "esle",
Is there any other method to resolve the problem
Thanks a lot