dirs and files
Status: Beta
Brought to you by:
hipernes
At the page that shows the drive's contents It can't see any dirs, only files at root dir. Only in Windows ME is observed it XP and W2000 are not affected.
The answer is in file files.c:
int esDir(const char * file)
105 {
106 struct stat sb;
107
108 if (stat(file, &sb)!=0){
109 logmsg("NO se pudo hacer stat en -%s-\n",file);
110 return 0 ;
111 }
112 else{
113 if (sb.st_mode & _S_IFDIR) return 1;
114 else return 0 ;
115 }
116 }
Does the function stat work in W ME?