如何获取SD卡路径以及如何使用Delphi XE5在 Android和iOS中获取可执行文件路径? 使用 System.IoUtils.TPath .使用TPath.GetDocumentsPath获取SD卡路径,并且应该使用TPath.GetHomePath找到应用程序的基本目
System.IoUtils.TPath
.使用TPath.GetDocumentsPath获取SD卡路径,并且应该使用TPath.GetHomePath找到应用程序的基本目录.
uses IOUtils; var AppPath, CardPath: string; AppPath := TPath.GetHomePath; CardPath :- TPath.GetDocumentsPath;
在TPath中还有其他几个系统路径相关的功能,包括这些(以及许多其他功能 – 你必须看到哪些适用于Android和iOS,因为文档不清楚)
GetTempPath GetPublicPath GetCameraPath GetMusicPath GetDownloadsPath