资源简介
本代码使 Android 系统能够自动挂载 NTFS 与 exFAT 格式的 SD 卡和 U 盘,并且都支持读写操作。
本代码需要修改 Android 平台源代码。使用的是 CyanogenMod 10.1 的源代码,并在 Samsung GT-I9100 上测试通过。
具体编译说明请参考 http://http://blog.csdn.net/hackpascal/article/details/8850688
代码片段和文件信息
/*
main.c (01.09.09)
FUSE-based exFAT implementation. Requires FUSE 2.6 or later.
Copyright (C) 2010-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation either version 3 of the License or
(at your option) any later version.
This program is distributed in the hope that it will be useful
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not see .
*/
#define FUSE_USE_VERSION 26
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define exfat_debug(format ...)
#if !defined(FUSE_VERSION) || (FUSE_VERSION < 26)
#error FUSE 2.6 or later is required
#endif
const char* default_options = “ro_fallbackallow_otherblkdevbig_writes“
“defer_permissions“;
struct exfat ef;
static struct exfat_node* get_node(const struct fuse_file_info* fi)
{
return (struct exfat_node*) (size_t) fi->fh;
}
static void set_node(struct fuse_file_info* fi struct exfat_node* node)
{
fi->fh = (uint64_t) (size_t) node;
}
static int fuse_exfat_getattr(const char* path struct stat* stbuf)
{
struct exfat_node* node;
int rc;
exfat_debug(“[%s] %s“ __func__ path);
rc = exfat_lookup(&ef &node path);
if (rc != 0)
return rc;
exfat_stat(&ef node stbuf);
exfat_put_node(&ef node);
return 0;
}
static int fuse_exfat_truncate(const char* path s64 size)
{
struct exfat_node* node;
int rc;
exfat_debug(“[%s] %s %“PRId64 __func__ path size);
rc = exfat_lookup(&ef &node path);
if (rc != 0)
return rc;
rc = exfat_truncate(&ef node size true);
exfat_put_node(&ef node);
return rc;
}
static int fuse_exfat_readdir(const char* path void* buffer
fuse_fill_dir_t filler s64 offset struct fuse_file_info* fi)
{
struct exfat_node* parent;
struct exfat_node* node;
struct exfat_iterator it;
int rc;
char name[EXFAT_NAME_MAX + 1];
exfat_debug(“[%s] %s“ __func__ path);
rc = exfat_lookup(&ef &parent path);
if (rc != 0)
return rc;
if (!(parent->flags & EXFAT_ATTRIB_DIR))
{
exfat_put_node(&ef parent);
exfat_error(“‘%s‘ is not a directory (0x%x)“ path parent->flags);
return -ENOTDIR;
}
filler(buffer “.“ NULL 0);
filler(buffer “..“ NULL 0);
rc = exfat_opendir(&ef parent &it);
if (rc != 0)
{
exfat_put_node(&ef parent);
exfat_error(“failed to open directory ‘%s‘“ path);
return rc;
}
while ((node = exfat_readdir(&ef &it)))
{
exfat_get_name(node name EXFAT_NAME_MAX);
exfat_debug(“[%s] %s: %s %“PRId64“ bytes cluster 0x%x“ __fun
相关资源
-
android.content.res.Axm
lResourceParser - 简单记账软件android apk
- 简单记账android
- AndroidStudio安装包+AndroidSDK(4.0-9.1)
- PC与Android设备通过USB建立通信连接
- UiAutomatorviewer 源码 Android 8.0
- Android通过webservice连接SqlServerAndroid4
- android日历源码
- ksoap2 android 3.6.0(新版本)
- 目前Android恶意软件分类
- Android视频播放器(Java源码注释详细)
- FTPSUploadUtils 上传工具
- android个人记账系统毕业设计论文
- Android 数独 游戏 源码
- HAL层模块代码
- 2012版最新QQ登录,注册界面实现andr
- android简易万年历源码
- Android自定义相机227222
- Android获取Wifi列表
- android GPS定位 完整代码
- Android记账本:SQLite+密码验证登录
- android action mode
- Android 天气预报加widget源码
- Android_HttpClient_jar包
- ArcFaceDemo 虹软 人脸识别 android demo包
- Android 抛物线动画
- Qt on Android调用Jar包
- android adb
- 查看包名和类名的apk
- volley jar包
评论
共有 条评论