What steps will reproduce the problem?
1. use simple c program
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
int main()
{
mkdir("/cygdrive/m/mydir", S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
rmdir("/cygdrive/m/mydir);
return 0;
}
Build this program under Cygwin and run it. After program termination
directory is not deleted.
Problem is in delete, it use "delete file" instead of "delete direvtory".
On ntfs drive is everything OK.
Original issue reported on code.google.com by snu...@gmail.com on 9 Jul 2012 at 2:14
Original issue reported on code.google.com by
snu...@gmail.com
on 9 Jul 2012 at 2:14