Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个 Android 应用程序。我用
String path = Environment.getExternalStorageDirectory().getPath();
获取外部存储路径并在其中创建一个新文件。看来我的代码可以运行。但我找不到它创建的新文件。你能告诉我如何通过计算机找到文件吗?比如外部存储的路径是什么?谢谢!
请使用 DDMS,使用文件资源管理器并查看文件夹 /mnt/sdcard/ 应该在那里
在大多数设备上,这将返回 /mnt/sdcard 或 /mnt/sdcard-ext。如果您通过 USB 挂载 SD 卡,这将是磁盘的根目录。如果您使用 adb 来提取文件,您将使用完整的 /mnt/sdcard/... 路径。
关于您的问题的奇怪之处在于您的代码中有字符串中的值。通常人们只会检查字符串或将其值记录到控制台。