file检测工具类

package com.zhiyou.filetoolstest;
import android.content.Context;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
 * Created by Administrator on 2016/5/11.
 */
public class FileTools {
    public static final int SUCCESS = 0;
    public static final int FILE_NOT_FONUD = 1;
    public static final int READ_WRITE_ERROR = 2;
    public static final void debug (Context context) {
        File filesDir = context.getFilesDir();
        File[] files = filesDir.listFiles();
        for (int i = 0; i < files.length; i++) {
            System.out.println("--->"+files[i].getName()+"  len="+files[i].length());
        }
    }
    public static final boolean isFileExistsInFiles(Context context, String filename) {
        File filesDir = context.getFilesDir();
        File file = new File(filesDir, filename);
        return file.exists();
    }
    public static final boolean deleteFileFromFiles(Context context, String filename) {
        File filesDir = context.getFilesDir();
        File file = new File(filesDir, filename);
        return file.delete();
    }
    public static final boolean copyFileFromRawToFiles(Context context, int raw_id, String filename) {
        InputStream in = null;
        OutputStream out = null;
        boolean result = false;
        try {
            in = context.getResources().openRawResource(raw_id);
            out = context.openFileOutput(filename, Context.MODE_PRIVATE);
            byte[] buffer = new byte[in.available()];
            in.read(buffer);
            out.write(buffer);
            out.flush();
            result = true;
        } catch (FileNotFoundException e) {
            e.printStackTrace();
            result = false;
        } catch (IOException e) {
            e.printStackTrace();
            result = false;
        } finally {
            if (null != in) {
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                    result = false;
                }
            }
            if (null != out) {
                try {
                    out.close();
                } catch (IOException e) {
                    e.printStackTrace();
                    result = false;
                }
            }
        }
        return result;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值