From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lko11-0006Zv-70 for qemu-devel@nongnu.org; Fri, 20 Mar 2009 19:20:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lko0w-0006Qy-M2 for qemu-devel@nongnu.org; Fri, 20 Mar 2009 19:20:38 -0400 Received: from [199.232.76.173] (port=52551 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lko0w-0006Qq-CS for qemu-devel@nongnu.org; Fri, 20 Mar 2009 19:20:34 -0400 Received: from fk-out-0910.google.com ([209.85.128.188]:30407) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lko0w-0000KW-23 for qemu-devel@nongnu.org; Fri, 20 Mar 2009 19:20:34 -0400 Received: by fk-out-0910.google.com with SMTP id z22so452891fkz.2 for ; Fri, 20 Mar 2009 16:20:30 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <49C42080.5080802@codemonkey.ws> References: <49C16D71.7020104@bttr-software.de> <49C41240.8030102@codemonkey.ws> <49C4177B.7080405@bttr-software.de> <49C42080.5080802@codemonkey.ws> Date: Sat, 21 Mar 2009 00:20:30 +0100 Message-ID: <68676e00903201620n1ac29c01g9e3d7172f9bc69a4@mail.gmail.com> Subject: Re: [Qemu-devel] r6677 broke access to physical FDD on Win32 From: Luca Tettamanti Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Sat, Mar 21, 2009 at 12:02 AM, Anthony Liguori w= rote: > Is "a:" a valid filename in Windows? No, ":" is not a valid char for a file name. >=C2=A0Is there a way in Windows to detect > that a given file is actually a physical device? : is used for delimiting the mount point; actually the internals are a bit more complicated (see [1]), stuff like A: or C: are reserved special names, the "real" device names are \\.\A: or \\.\C: (where \\.\ is the namespace used for devices). Luca http://msdn.microsoft.com/en-us/library/aa365247.aspx#path_names_and_namesp= aces