From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=BAYES_00, PP_MIME_FAKE_ASCII_TEXT autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,8b0fd552a3a7b347 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-01-20 22:11:15 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!nntp.cs.ubc.ca!newsflash.concordia.ca!snoopy.risq.qc.ca!newshub.northeast.verio.net!verio!newsfeed.mathworks.com!wn13feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!sccrnsc01.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Long name to short name conversion References: <40907d23.0301201909.7bb5c8da@posting.google.com> X-Newsreader: Tom's custom newsreader Message-ID: <5w5X9.76157$1q3.11872@sccrnsc01> NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@attbi.com X-Trace: sccrnsc01 1043129473 12.234.13.56 (Tue, 21 Jan 2003 06:11:13 GMT) NNTP-Posting-Date: Tue, 21 Jan 2003 06:11:13 GMT Organization: AT&T Broadband Date: Tue, 21 Jan 2003 06:11:13 GMT Xref: archiver1.google.com comp.lang.ada:33275 Date: 2003-01-21T06:11:13+00:00 List-Id: > I have an installation CD. All files/directories inside the CD are of > short names (8.3). It also has install batch file, which installs some > files into system. Unfortunately, the batch file is written in such a > way that, it looks for a specific file whose path is of long names. So the install batch file was not written to work with this CD, right? Can you find an install file that *is* intended to work with the CD? > xcopy /T /E. But how to re-convert to long names�. Any ideas?? In general, there's no way to know which of this is a long name this is a longer name was converted to which of thisis~1 thisis~2 Is there something internal to the CD files that would tell the name (for instance, are they Ada source files and you could run gnatchop on them)? Or are there no *~2 files, so the first six characters are unique and you could manually match the 8.3 names against the names expected by the bat file? If so, you could modify the bat file (since you can't change the names on the CD).