I have to learn and develop a web interface in Perl that will just go get the size and the creation date/time a set of folders on a Windows Server (2012 r2)

Have you read perlintro? Start there, because without the basics you are going to sink very fast.

Your task is actually 3 tasks:

  1. Connect (by some as yet unspecified protocol) to an alien (Win32) server
  2. Retrieve various FS data from the alien server
  3. Put a web interface on it

Do these one at a time - ideally in the order above. Consider using Modules for separation of tasks. And always, always use strict and warnings.

Good luck, especially with the Windows bit. That will probably be the tricky part.


In reply to Re: Working with folders in Perl and HTML by hippo
in thread Working with folders in Perl and HTML by LinuxNoob

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • 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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.