gpt4 book ai didi

android - 从 PowerShell 使用 System.IO 访问 MTP 存储

转载 作者:太空宇宙 更新时间:2023-11-03 10:36:12 26 4
gpt4 key购买 nike

我正在尝试访问 MTP 设备存储以自动执行文件复制、备份等操作。如果 Windows 资源管理器能够打开和浏览 Android 设备内部存储和连接的 SD 卡,我如何使用 PowerShell 访问这些存储?

I've found a lots of hints, such as "get device ID and use WMI"

Windows 资源管理器使用什么方式打开和浏览特别是 Android 的存储?

Is it possible to use some System.IO Class like here?

$drives = [System.IO.DriveInfo]::GetDrives()
$r = $drives | Where-Object { $_.DriveType -eq 'Removable' -and $_.IsReady }
if ($r) {
return @($r)[-1]
}

我可以通过以下方式访问和浏览本地 MTP(安卓)设备的内容:

$WIAdialog = New-Object -ComObject “WIA.CommonDialog”
$Device = $WIAdialog.ShowSelectDevice()
$Device = $WIAdialog.ShowAcquireImage()
$Device = $WIAdialog.ShowAcquisitionWizard()
$Device = $WIAdialog.ShowDeviceProperties()
$Device = $WIAdialog.ShowItemProperties()
$Device = $WIAdialog.ShowPhotoPrintingWizard()
$Device = $WIAdialog.ShowSelectItems()
$Device = $WIAdialog.ShowTransfer()

但是这段代码正在加载有关存储图片的信息,即使在本地计算机上也太慢了。是否可以避免加载有关图片的信息以加快加载和访问远程连接的设备?

提前感谢您提供任何信息和提示!

最佳答案

这是我在 Stack Overflow (Stack Exchange) 上的第一个回答,请考虑。

我正在处理同样的问题 - 我希望能够像在 Explorer 中一样在 PowerShell 中使用 android 内部存储。我唯一的建议是我们可以安装 FTP 服务器(我最喜欢的是 FTP Server )并以这种方式排序。到目前为止,我发现的是关于 super 用户的这些答案:
Open command prompt to access folders of a USB connected Android phone
13票通过

要为可移动设备分配驱动器号,该设备必须支持 UMS(USB 大容量存储)协议(protocol)。不幸的是,大多数较新的 Android 手机,尤其是那些没有可移动 SD 卡的手机,不支持 UMS。相反,它们支持 MTP(媒体传输协议(protocol))和 PTP(图片传输协议(protocol))协议(protocol)。在此类设备中,无法将存储映射为 Windows 中的驱动器。

查看有关此 Superuser.com 的更多详细信息 question: How do I access MTP devices on the command line in Windows?

24 votes & accepted

Unfortunately, APIs exposed by MTP are very different from a normal filesystem APIs. Therefore exposing MTP device as a read/write filesystem is not possible. The main reason:

Wikipedia says:

Neither the MTP nor the PTP standards allow for direct modification of objects. Instead, modified objects must be reuploaded in their entirety, which can take a long time for large objects. With PTP/MTP, the file size must be known at the opening stage.

您的通用文件复制程序只是打开一个源文件和一个目标文件,然后将数据从源文件分块复制到目标文件。这不适用于 MTP,因为您需要使用 MTP 特殊功能,并且通用文件系统原语(读取、查找、写入)不可用。

还有其他限制。例如,可以在 MTP 设备上同时读取或写入的文件数量受到严格限制。该设备根本不像文件系统。

我想 MTP 设备的只读文件系统驱动程序可能是可能的,但由于上述问题,它几乎没有用处,所以没有人费心去创建它。

2012 年 5 月 12 日 6:33 编辑 彼得莫腾森 8,075

2012 年 1 月 10 日 20:08 回答 海姆 15.9k

The read-only filesystem driver seems to exist now: ptpdrive.com – Arne de Bruijn Sep 12 '13 at 12:25

ptpdrive.com

Actually, it's not "not possible". When you consider that I've got gphotofs and mtpfs as FUSE filesystems on Linux that're COMPLETELY Read/Write - its' quite possible to accomplish this as a "drive letter" under Windows... they've just not made it available or easy. – Svartalf May 9 '14 at 19:57

话虽如此,在某些选定的三星和索尼 Android 设备上,可以仅为外部存储(SD 卡)启用 UMS 模式。参见 this app SG USB Mass Storage Enabler .

此外,如果您的目标是通过命令提示符简单地将文件复制到 Android 设备或从中复制文件,ADB 将允许您这样做。此实用程序是 Android SDK 工具的一部分。您需要为您的安卓手机安装 USB 驱动程序,在手机的开发者设置中激活 USB 调试,并授权 PC 调试手机(通过设备上的提示)。完成后,您将能够使用 adb pushadb pull复制文件和目录的命令,以及通过 adb shell <command> 提供的各种 Linux shell 命令(例如 adb shell ls /sdcard/ )导航手机上的目录结构。

17 年 3 月 20 日 10:18 编辑
社区 ♦
1
13 年 11 月 21 日 16:14 回答
查克

18.5k

在我看来,上面回答中提到的应用非常有限,因为它的年代久远。

关于android - 从 PowerShell 使用 System.IO 访问 MTP 存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44094188/

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