+ 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;