gpt4 book ai didi

android - 无法找到保存的图像

转载 作者:行者123 更新时间:2023-11-30 00:53:17 28 4
gpt4 key购买 nike

我是 Android 的新手。我正在使用 Xamarin,我必须用相机拍照并保存照片。

我实现了拍照,我有一个Bitmap对象。然后我保存它没有错误,但是当我试图找到它时,没有文件。

这是我的代码:

Bitmap imgBmp = /* image initialized */

//Save image on folder
var folderPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal);
var filePath = System.IO.Path.Combine(folderPath, "image1.png");
var stream = new System.IO.FileStream(filePath, FileMode.Create);
bool isOK = imgBmp.Compress(Bitmap.CompressFormat.Jpeg, 95, stream);
stream.Flush();
stream.Close();

执行时没有错误,isOK 为真,但是当我搜索 image.png 时,我找不到该文件。

使用调试器我看到路径是:/data/user/0/com.myCompagny.MyAppli/files/image1.png 但我看不到那个文件夹。

有人可以帮我找到我的 image1.png 吗?

或者将默认文件夹更改为类似 Pictures\MyApplication\image.png 的文件夹,但我不知道如何找到图像的默认文件夹。

最佳答案

你的文件在那里,but you have no permissions to see it .应用程序目录只能由拥有应用程序的 uid 读取。如果你试图通过 shell 找到你的文件,你的 uid 是不同的。

你应该尝试使用 another folder path如果您想将文件保存在世界可读的位置。

我只是在猜测,但也许 System.Environment.SpecialFolder.CommonPictures 可以。

关于android - 无法找到保存的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40587998/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com