Page 1 of 1

Get ApplicationPlugins path

Posted: Tue Mar 18, 2025 2:27 am
by RaHo
How can I find the install dir from IntelliCad (SubDir ApplicationPlugins)

Code: Select all

   
   //---------------------------------------------------------------------------------
        internal static bool GetPath_ApplicationPlugins(out string LongPathNam)
        {
            LongPathNam = string.Empty;
            return true;
        }
   //---------------------------------------------------------------------------------

Re: Get ApplicationPlugins path

Posted: Wed Mar 19, 2025 8:18 am
by QuanNguyen
Hi Raho,
You can use the system variable: ExeDir to get the folder of the CMS IntelliCAD.

Code: Select all

(getvar "ExeDir")

Re: Get ApplicationPlugins path

Posted: Thu Mar 27, 2025 1:13 am
by pprovemur
The ApplicationPlugins folder is typically located inside the application's installation directory (e.g., for Unity games or Qt applications):

plaintext
C:\Program Files\<YourAppName>\ApplicationPlugins