找不到我在设备上创建的xml文件

时间:2014-05-11 13:51:09

标签: android xml delphi delphi-xe6

我刚开始玩Android和Delphi。我有一个非常奇怪的问题,因为我在我的设备上找不到我用这段代码创建的xml文件:

procedure TForm1.FormCreate(Sender: TObject);
var
  LFileName: String;
begin
  LFileName := TPath.Combine(TPath.GetDocumentsPath, 'FilesInfo.xml');
  //LFile name resolves to: /data/data/com.embarcadero.XLocator/files/FilesInfo.xml
  if not FileExists(LFileName) then
  begin
    xmlFilesInfo.Active := True;
    xmlFilesInfo.DocumentElement := xmlFilesInfo.CreateNode('Files');
    xmlFilesInfo.SaveToFile(LFileName);
  end else
    xmlFilesInfo.LoadFromFile(LFileName);
end;

文件在那里,因为我在应用程序启动后看到它的内容,但我不知道在哪里。给定的路径不存在。我尝试使用Windows资源管理器,ES文件资源管理器找到此文件,但没有成功。我没有插入SD卡。我的整个设备上只有两个xml文件,没有一个是我的应用程序创建的文件。

我不知道这是否重要,但我已经在调试模式下部署了我的应用程序。

我在这里缺少什么?

0 个答案:

没有答案