localFilePath property

File? localFilePath

获取本地的路径

Implementation

File? get localFilePath {
  if(isLocalFile){
    return (this as XXFile).file;
  }
  return null;
}