in reply to Is there any specific convention/best practices for perl module creation?

On what basis Directories and Files should be classified (Right now each of my Files are for handling specific section of our application)?
Focus not on files and directories, but on modules. The principal unit of decomposition in Perl is the module.

When designing modules, focus first on the module interface. Perl Best Practices, Chapter 17 (Modules), "Design the module's interface first" advises how to go about this (play testing and so on). For a detailed discussion of software interfaces in general, see On Interfaces and APIs.

What should be the maximum number of lines in a file?
Don't focus on lines in a file. Focus on sound software design. For example: If you do that, code maintenance becomes easier, and none of your files should be grotesquely huge. See also:

  • Comment on Re: Is there any specific convention/best practices for perl module creation?