private void getFileInfo() {
getDemoFile(new DemoCallback() {
@Override
public void onSuccess(FileEntry file) {
file.file(new FileCallback() {
@Override
public void onSuccess(File file) {
console(
"Name -- " + file.getName() + "<br/>" +
"Full Path -- " + file.getFullPath() + "<br/>" +