System.out.println( "Upload::" + f.getName() );
if( f.getName().startsWith( "." ) || f.getParentFile().getName().startsWith( "." ) ) {
System.out.println( "not uploading: " + f.getName() );
} else {
try {
folder.upload( f, this, new Throttle() {
public void onRead( int len ) {
}
} );
currentFile++;