Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!eternal-september.org!feeder.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Marko Rauhamaa Newsgroups: comp.lang.python Subject: Re: how to write file into my android phone? Date: Sun, 10 Aug 2014 12:56:50 +0300 Organization: A noiseless patient Spider Lines: 23 Message-ID: <871tsohdlp.fsf@elektro.pacujo.net> References: <53E660BF.7080401@gmail.com> <53e73de8$0$24963$c3e8da3$5496439d@news.astraweb.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: mx05.eternal-september.org; posting-host="ff5cf27ef3d5b31f034d3b72bdc27a41"; logging-data="2442"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/U6c5IBx8oVapc6lH0cQ9I" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) Cancel-Lock: sha1:oVvp8zRX3euEvu3fwgYIyf2vieA= sha1:+cJX3oLtZO/a4WlQsexqSYz0hk4= Xref: csiph.com comp.lang.python:75975 Christian Gollwitzer : > Am 10.08.14 11:39, schrieb Steven D'Aprano: >> Android phones don't mount as storage devices? >> Oh well, that's Android crossed off my list. > > Not any longer. They used to, but the support for mass storage was > dropped in favour of MTP I don't see anything inherently wrong with an open protocol like MTP. > to allow concurrent access from both the computer and the phone. I don't know MTP at all, but MTP allows no parallelism; unlike USB mass storage, MTP has been built to only allow a single operation at a time (for example, read, write or delete operation), while no other operation can be executed until the previous operation is complete. Marko