Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #76012
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!eternal-september.org!feeder.eternal-september.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.113 |
| X-Spam-Level | * |
| X-Spam-Evidence | '*H*': 0.80; '*S*': 0.03; 'subject:file': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:into': 0.09; '3.0.': 0.16; 'message-id:@4ax.com': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'sequential': 0.16; 'all.': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'example': 0.22; 'aug': 0.22; 'url:home': 0.24; 'visible': 0.24; 'transfers': 0.26; 'header:X-Complaints-To:1': 0.27; 'hosting': 0.29; 'am,': 0.29; "d'aprano": 0.31; 'steven': 0.31; 'file': 0.32; 'style': 0.33; 'device': 0.34; 'but': 0.35; 'subject:?': 0.36; 'starting': 0.37; 'to:addr:python-list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'dave': 0.60; 'phones': 0.60; 'skip:\xe2 10': 0.65; 'media': 0.66; 'phone': 0.66; 'direct': 0.67; '8bit%:43': 0.74; 'transfer': 0.82; 'connection).': 0.84; 'devices,': 0.84; 'drive.': 0.84; 'fails,': 0.84; 'samsung': 0.84; 'angel': 0.91; 'subject:phone': 0.91; 'mount': 0.93; 'received:108': 0.93 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
| Subject | Re: how to write file into my android phone? |
| Date | Sun, 10 Aug 2014 20:51:31 -0400 |
| Organization | IISS Elusive Unicorn |
| References | <53E660BF.7080401@gmail.com> <CAMw+j7J6_R2pR3PTch3okxqYDs57rOoKHLbssHrq54Q75gGLSw@mail.gmail.com> <ls66uo$mru$1@ger.gmane.org> <mailman.12809.1407661690.18130.python-list@python.org> <53e73de8$0$24963$c3e8da3$5496439d@news.astraweb.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=utf-8 |
| Content-Transfer-Encoding | 8bit |
| X-Gmane-NNTP-Posting-Host | adsl-108-79-216-105.dsl.klmzmi.sbcglobal.net |
| X-Newsreader | Forte Agent 6.00/32.1186 |
| X-No-Archive | YES |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.12832.1407718288.18130.python-list@python.org> (permalink) |
| Lines | 28 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1407718288 news.xs4all.nl 2908 [2001:888:2000:d::a6]:44896 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:76012 |
Show key headers only | View raw
On Sun, 10 Aug 2014 19:39:51 +1000, Steven D'Aprano
<steve+comp.lang.python@pearwood.info> declaimed the following:
>Chris “Kwpolska” Warrick wrote:
>
>> On Sun, Aug 10, 2014 at 12:23 AM, Dave Angel <davea@davea.name> wrote:
>>> 1) it's not necessarily j: And not necessarily a single drive.
>>
>> The OP claims it is a J: drive they want to write to.
>>
>>> 2) the phone isn't necessarily visible on a pc as a drive at all.
>>> For example the Samsung gs4.
>>
>> This is actually true for ALL android devices, starting with Android 3.0.
>
>o_O
>
>Android phones don't mount as storage devices?
>
The Nook HD+ mounts as an MTP target (glorified FTP style connection).
The hosting device does NOT get direct access to the storage media but has
to ask the device to accept a file transfer to some location. This limits
transfers to sequential (one file at a time, if that transfer fails, all
remnants are removed from the file system).
--
Wulfraed Dennis Lee Bieber AF6VN
wlfraed@ix.netcom.com HTTP://wlfraed.home.netcom.com/
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: how to write file into my android phone? Chris “Kwpolska” Warrick <kwpolska@gmail.com> - 2014-08-10 11:08 +0200
Re: how to write file into my android phone? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-08-10 19:39 +1000
Re: how to write file into my android phone? Christian Gollwitzer <auriocus@gmx.de> - 2014-08-10 11:46 +0200
Re: how to write file into my android phone? Marko Rauhamaa <marko@pacujo.net> - 2014-08-10 12:56 +0300
Re: how to write file into my android phone? Grant Edwards <invalid@invalid.invalid> - 2014-08-11 22:58 +0000
Re: how to write file into my android phone? Grant Edwards <invalid@invalid.invalid> - 2014-08-12 14:18 +0000
Re: how to write file into my android phone? Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2014-08-10 20:51 -0400
Re: how to write file into my android phone? Anssi Saari <as@sci.fi> - 2014-08-12 16:31 +0300
Re: how to write file into my android phone? alex23 <wuwei23@gmail.com> - 2014-08-14 16:09 +1000
Re: how to write file into my android phone? Chris “Kwpolska” Warrick <kwpolska@gmail.com> - 2014-08-14 08:21 +0200
csiph-web