将 png 文件从一个文件夹复制到另一个文件夹
我的文件夹中有一个 PNG 文件,我想将此文件复制到另一个文件夹。有没有简单的方法可以做到这一点?
示例:
//Creating PNG
File file = new File(Environment.getExternalStorageDirectory()
+ File.separator+"/S_Temp/temp_"+formattedDate+".png");
FileOutputStream out = new FileOutputStream(file);
view.mBitmap.compress(Bitmap.CompressFormat.PNG,100, out);
所以,我在 SD 卡的“S_Temp”文件夹中保存了 PNG 文件,现在我想将此文件复制到 SD 卡本身的一个新文件夹中,例如“S”。
提前致谢
快乐编码
I have a PNG file in a folder, I want to copy this file to another folder. Is there a easy way to do this ?
Example:
//Creating PNG
File file = new File(Environment.getExternalStorageDirectory()
+ File.separator+"/S_Temp/temp_"+formattedDate+".png");
FileOutputStream out = new FileOutputStream(file);
view.mBitmap.compress(Bitmap.CompressFormat.PNG,100, out);
So, I have the PNG in the SD card in the folder "S_Temp", now I want to copy this file to a new folder in the SD card itself, say "S".
Thanks in advance
Happy Coding
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个。
try this.