Hello, Im having some trouble understanding the -e test on windows Im on win7 but I know my problem is on all windows. my objective here is to get the drive which my perl script lies in, but each time I preform a test windows gives me an annoying popup saying perl.exe No Disk .. if there is a better method I would appriciate your wisdom! Here is my code: Thank you!
sub get_drive{
if(-e 'A:\\extracted'){$drive = "A:";} elsif
(-e 'B:\\extracted'){$drive = "B:";} elsif
(-e 'C:\\extracted'){$drive = "C:";} elsif
(-e 'D:\\extracted'){$drive = "D:";} elsif
(-e 'E:\\extracted'){$drive = "E:";} elsif
(-e 'F:\\extracted'){$drive = "F:";} elsif
(-e 'G:\\extracted'){$drive = "G:";} elsif
(-e "H:\\extracted"){$drive = "H:";} elsif
(-e "I:\\extracted"){$drive = "I:";} elsif
(-e "J:\\extracted"){$drive = "J:";} elsif
(-e "K:\\extracted"){$drive = "K:";} elsif
(-e "L:\\extracted"){$drive = "L:";} elsif
(-e "M:\\extracted"){$drive = "M:";} elsif
(-e "N:\\extracted"){$drive = "N:";} elsif
(-e "O:\\extracted"){$drive = "O:";} elsif
(-e "P:\\extracted"){$drive = "P:";} elsif
(-e "Q:\\extracted"){$drive = "Q:";}
};
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|