```
/**
* @todo {檢測是否目錄}
* @desc {fs.exists 廢棄了,推薦用fs.stat 和fs.access來實現}
* @param {wpath} path
* @return {boolean}
*/
fsExistsSync : ( wpath ) => {
try{
fs.accessSync( wpath );
} catch ( e ) {
return false;
}
return true;
}