3
  • 如何获取 SD 卡路径以及如何使用 Delphi XE5 在 Android 和 iOS 中获取可执行路径?
4

1 回答 1

7

使用System.IoUtils.TPath. SD卡路径是用 获取的TPath.GetDocumentsPath,应用的基目录应该是TPath.GetHomePath

uses
  IOUtils;


var
  AppPath, CardPath: string;


  AppPath := TPath.GetHomePath;
  CardPath :- TPath.GetDocumentsPath;

还有其他几个与系统路径相关的功能TPath,包括这些(以及许多其他功能 - 您必须查看哪些适用于 Android 和 iOS,因为文档不清楚)

GetTempPath
GetPublicPath
GetCameraPath
GetMusicPath
GetDownloadsPath    
于 2013-09-17T19:03:22.353 回答