import java.net.MalformedURLException;
import java.net.URL;
+import eu.alefzero.owncloud.files.services.FileDownloader;
+
import android.net.Uri;
import android.os.Parcel;
import android.os.Parcelable;
*
* @return true if it is
*/
- public boolean isDownloaded() {
- return mLocalPath != null && !mLocalPath.equals("");
+ public boolean isDown() {
+ if (mLocalPath != null && mLocalPath.length() > 0) {
+ File file = new File(mLocalPath);
+ return (file.exists());
+ }
+ return false;
+ }
+
+ /**
+ * Use this to check if this file is downloading
+ *
+ * @return true if it is in a download in progress
+ */
+ public boolean isDownloading() {
+ if (mLocalPath != null && mLocalPath.length() > 0) {
+ String savePath = FileDownloader.getSavePath();
+ File file = new File(FileDownloader.getTemporalPath() + mLocalPath.substring(savePath.length()));
+ return (file.exists());
+ }
+ return false;
}
/**
@Override
public String toString() {
String asString = "[id=%s, name=%s, mime=%s, downloaded=%s, local=%s, remote=%s]";
- asString = String.format(asString, new Long(mId), getFileName(), mMimeType, isDownloaded(), mLocalPath, mRemotePath);
+ asString = String.format(asString, new Long(mId), getFileName(), mMimeType, isDown(), mLocalPath, mRemotePath);
return asString;
}