首页 \ 问答 \ 如何从android中的应用程序将数据写入USB记忆棒(Pendrive)(How to write the data to USB stick(Pendrive) from the application in android)

如何从android中的应用程序将数据写入USB记忆棒(Pendrive)(How to write the data to USB stick(Pendrive) from the application in android)

在我的应用程序中,我必须从应用程序写入数据到USB记忆棒(Pendrive)。

我的应用程序将支持将数据写入本地内存和USB记忆棒(Pendrive)。

目前我能够将数据写入本地内存,但我无法写入USB记忆棒(Pendrive)。

我们是否需要添加WRITE_EXTERNAL_STORAGE以外的任何额外权限?

可以通过应用程序写入USB记忆棒(Pendrive)吗?

我能够准备好USB中的文件,我无法写入数据。

这是我想要写入数据的文件夹路径。 “ / storage / usb1 / TestFolder

我可以得到一些帮助吗?


In my application i have to write the Data to USB stick(Pendrive) from the application.

My application will support to write the data to Local memory and USB stick(Pendrive).

Currently i am able to write the data to Local memory ,but i am unable to write to USB stick(Pendrive).

Do we need to add any extra permission other than WRITE_EXTERNAL_STORAGE?

Is writing to USB stick(Pendrive) through app possible?

I am able to ready the files which are there in the USB,i am not able to write the data.

Here is the folder path where i want to write the data. "/storage/usb1/TestFolder"

Can i get some help on this?


原文:https://stackoverflow.com/questions/29518024
更新时间:2022-01-25 11:01

最满意答案

你可以做如下的检查结果值,如果它不是NULL然后显示模式,否则做别的事情。

if (result) {
    $('#myModal').modal({show:true});
}else { # do someting if required }

you can do like the following to check the result value if its not NULL then show the modal else do something else.

if (result) {
    $('#myModal').modal({show:true});
}else { # do someting if required }

相关问答

更多
  • perl <=>是什么[2022-03-22]

    <=>是 Spaceship operator 太空船操作符:三向的比较数字操作符 $a<=>$b 这个操作符比较两个数字,返回-1,0,1。 返回1 $a>$b 返回0 $a=$b 返回-1 $a<$b 比如: $a = 5 <=> 7; # $a is set to -1 $a = 7 <=> 5; # $a is set to 1 $a = 6 <=> 6; # $a is set to 0
  • perl该怎么用?[2021-12-03]

    推荐一个学习资料----PERL编程速成教程,百度文库里面就有,很详细,也实用,不是那种很繁琐的语法介绍。如果是Linux环境下直接用vi编辑,windows下文本编辑器就选Notepad++吧,很好用,(其他的还要学怎么用)。最近也在研究这,大家一起加油吧
  • perl -> 怎么用[2023-05-09]

    推荐看小骆驼,perl语言入门。 -> 的用法我只知道两种 1.使用哈希时用到(初级教程都有介绍) 2.解引用时用到(初级教程有介绍) 3.使用对象的方法时用到(高级教程有介绍) 推荐学习网站: chinaunix
  • 您可以使用节点的内置spawn命令来执行子进程,并使用carrier来处理stdout的逐行处理: 安装: $ npm install carrier 码: var util = require('util'), spawn = require('child_process').spawn, carrier = require('carrier'), pl_proc = spawn('perl', ['script.pl']), my_carrier; my_c ...
  • 你可以做如下的检查结果值,如果它不是NULL然后显示模式,否则做别的事情。 if (result) { $('#myModal').modal({show:true}); }else { # do someting if required } you can do like the following to check the result value if its not NULL then show the modal else do something else. if (result) { ...
  • 对于Python,我建议使用CPAN的inline-python模块: http : //search.cpan.org/dist/Inline-Python/Python.pod 例: use Inline Python => <
  • 如果您使用快递,您可以使用中间件http://expressjs.com/guide.html#middleware并连接以模拟simular解决方案。 https://github.com/senchalabs/connect 我希望这对这个问题有所帮助:)。 If you are using express you could potentially use middleware http://expressjs.com/guide.html#middleware and connect to simu ...
  • 寻找能够提高工作效率的工具,这两种工具可能与您的目的相似。 如果你有Perl知识我会建议你使用Dancer。 或Flask for Python, Sinatra for Ruby,...... 对于Perl,Dancer是一个很棒的Web框架。 另请参见: Mojolicious :: Lite和Kelp 。 Look for the tool that makes you more productive, both tools may be similar for your purposes. I'll ...
  • 我最终选择了位于控制器和模型之间的服务。 控制器功能如下所示(使用与上面相同的示例): currentTemperature: function(req, res) { ninjaBlockService.getCurrentTemperature(req.param('location'), function(data) { return res.json(data); }); } 和服务功能: getCurrentTemperature: function(locati ...
  • 这些变量记录在perlvar页面中: http : //perldoc.perl.org/perlvar.html $? 最后一个管道关闭,反引号(``)命令,成功调用wait()或waitpid()或来自system()操作符返回的状态。 这只是传统Unix wait()系统调用返回的16位状态字(或者看起来像是这样)。 因此,子进程的退出值实际上是($?>> 8),而$? &127给出了进程死亡的信号(如果有的话)和$? &128报告是否存在核心转储。 These variables are docu ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)