// Entry sort compare
function sortCompareEntry( a, b ) {
if ( a.isDirectory && b.isFile ) {
return -1;
} else if ( a.isFile && b.isDirectory ) {
return 1;
} else {
return a.name - b.name;
}
}
以下正常
// 排序算法
function sortCompareEntry( a, b ) {
if ( a.isDirectory && b.isFile ) {
return -1;
} else if ( a.isFile && b.isDirectory ) {
return 1;
} else {
if(b.name > a.name){
return -1;
} else{
return 1; }
}
}