C # Call DLL method to get DLL physical path

Source: Internet
Author: User
When writing a class library project, there are often some special business needs to use the server side of the physical path, using the traditional System.IO.Directory.GetCurrentDirectory () method returned is the Winnt\System32 directory, which is generally not full Normal business requirements, and the physical directory where the DLL is to be run through assembly.getexecutingassembly (). CODEBASE attribute to be obtained, the specific reference method is as follows:

///    get assembly's   running path
 
    ///private String Getassemblypath ()   {       String _codebase =system.reflection.assembly.getexecutingassembly (). CodeBase;       _codebase = _codebase.substring (8,_codebase.length-8);    8 is the length of the file://       string[] arrsection = _codebase.split (new char[]{'/'});                  String _folderpath = "";       for (int i=0;i
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.