Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.help > #1317
| From | Roedy Green <see_website@mindprod.com.invalid> |
|---|---|
| Newsgroups | comp.lang.java.help |
| Subject | copying |
| Date | 2011-11-10 21:13 -0800 |
| Organization | Canadian Mind Products |
| Message-ID | <hlbpb79p69v5nsq4b21rilsvr90pc6d380@4ax.com> (permalink) |
Copying a file from one spot on disk to another is a very common operation. It conceptually simple, but rarely done efficiently. I discuss the problem at http://mindprod.com/jgloss/copy.html -- Roedy Green Canadian Mind Products http://mindprod.com Windows is a case-insensitive operating system, but that does not mean you can forget about case. For example, Let us assume you have a file called Abc.txt in C:\temp, and a file called aBc.txt in D:\temp and you type copy C:\temp\abC.txt D:\temp. What is the name of the file in D:\temp when you are done? 1) Abc.txt 2) aBc.txt 3) abC.txt 4) abc.txt 5) ABC.txt Hint, the answer rhymes with the most popular word in advertising.
Back to comp.lang.java.help | Previous | Next | Find similar
copying Roedy Green <see_website@mindprod.com.invalid> - 2011-11-10 21:13 -0800
csiph-web