gpt4 book ai didi

c# - 我可以从 txt 文件内部存储(文档文件夹)读取和写入,但无法浏览到该位置,因为它不存在

转载 作者:行者123 更新时间:2023-11-29 20:55:52 24 4
gpt4 key购买 nike

好吧,我已经设法在 Xamarin Studio 的 C# 中以编程方式读/写文件。它在我的设备上运行。

但是,当我将写入文件的确切路径输出到控制台时,该路径甚至在整个手机的任何地方都不存在!!!!

怎么样?

using System;
using System.IO;

using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;

namespace ToolbarSample
{
[Activity(Label = "ToolbarSample", MainLauncher = true, Icon = "@drawable/icon")]
public class MainActivity : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);

// Set our view from the "main" layout resource
SetContentView(Resource.Layout.Main);

string content = "Jason rules";
string filename = "file.txt";

var documents = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal);

// Get our button from the layout resource,
// and attach an event to it
Button button = FindViewById<Button>(Resource.Id.button);
TextView viewer = FindViewById<TextView>(Resource.Id.textView1);

if (File.Exists(documents + @"/" + filename))
{
string newContent = File.ReadAllText(documents + @"/" + filename);

if (viewer != null)
{
viewer.Text = newContent;
Console.WriteLine("File exists in: " + documents + @"/" + filename);
}
}

if (button != null)
{
button.Click += delegate
{
button.Enabled = false;

if (!Directory.Exists(documents))
{
viewer.Text = "Directory not found: " + documents;
}
else
{
Console.WriteLine("Directory exists.");

File.WriteAllText(documents + @"/" + filename, content);

if (!File.Exists(documents + @"/" + filename))
{
viewer.Text = "File not found: " + documents + @"/" + filename;
}
else
{
string newContent = File.ReadAllText(documents + @"/" + filename);

if (viewer != null)
{
viewer.Text = newContent;
Console.WriteLine("File exists in: " + documents + @"/" + filename);
}
}
}
};
}
}
}
}

从内部 sdcard 成功读取后,以下内容将输出到控制台:

Directory exists. File exists in: /data/data/ToolbarSample.ToolbarSample/files/file.txt

但是使用(许多不同的)文件管理器 - 所有文件管理器都具有根访问权限 - 并显示隐藏文件 - 我无法导航到该路径,因为它不存在。我什至用整个手机搜索“file.txt”,但没有一个结果出现。然而,每当我打开我的应用程序并单击按钮时,我都能读取该文件。

最佳答案

您指定位置的文件确实存在。您无法通过 USB 和文件资源管理器从 PC 访问该位置,但如果您使用 Root Explorer 等优秀的文件管理器应用程序,则可以访问该位置(和文件)。

如果您真的希望您的用户能够访问这些保存的文件,我建议您将这些文件保存到一个更好的位置,以便用户可以轻松地将文件从他们的手机通过 USB 传输到计算机。

关于c# - 我可以从 txt 文件内部存储(文档文件夹)读取和写入,但无法浏览到该位置,因为它不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27766997/

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