import java.util.Set;
import java.util.concurrent.atomic.AtomicBoolean;
+import com.owncloud.android.MainApp;
import com.owncloud.android.datamodel.OCFile;
import com.owncloud.android.lib.common.network.OnDatatransferProgressListener;
import com.owncloud.android.lib.common.OwnCloudClient;
import com.owncloud.android.utils.FileStorageUtils;
import android.accounts.Account;
+import android.media.MediaScannerConnection;
import android.webkit.MimeTypeMap;
/**
newFile = new File(getSavePath());
newFile.getParentFile().mkdirs();
moved = tmpFile.renameTo(newFile);
+
+ Log_OC.d("mediaScan", "mediaScan : " + newFile.getAbsolutePath());
+ MediaScannerConnection.scanFile(MainApp.getAppContext(),
+ new String[]{newFile.getAbsolutePath()}, null, null);
+
if (!moved)
result = new RemoteOperationResult(RemoteOperationResult.ResultCode.LOCAL_STORAGE_NOT_MOVED);
}
}
-
- // trigger MediaScan
- MediaScannerConnection.scanFile(
- null,
- new String[]{mLocalFile.getStoragePath()},
- null,null);
-
Log_OC.i(TAG, "Synchronizing " + mAccount.name + ", file " + mLocalFile.getRemotePath() + ": " + result.getLogMessage());
return result;
Log_OC.d(TAG, "Received broadcast intent " + intent);
File downloadedFile = new File(intent.getStringExtra(FileDownloader.EXTRA_FILE_PATH));
- String parentPath = downloadedFile.getParent();
+ String parentPath = downloadedFile.getParent();
FolderObserver observer = mFolderObserversMap.get(parentPath);
if (observer != null) {
if (intent.getAction().equals(FileDownloader.getDownloadFinishMessage())
}
} else {
-
- if (downloadedFile.exists()){
- Log_OC.d("mediaScan", "mediaScan : " + downloadedFile.getAbsolutePath());
- MediaScannerConnection.scanFile(getApplicationContext(),
- new String[]{downloadedFile.getAbsolutePath()}, null, null);
- }
-
Log_OC.d(TAG, "No observer for path " + downloadedFile.getAbsolutePath());
}
}