Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
[Solved] GetCurrentDir is giving me location of my shortcut
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Fast Fourier Transform (F...
by
Thaddy
[
Today
at 12:02:39 pm]
[SOLVED] suddenly i have ...
by
CharlyTango
[
Today
at 11:29:56 am]
Problems with Lazaruz 3.8...
by
salvadordf
[
Today
at 11:22:35 am]
"database not open" - IBX...
by
CharlyTango
[
Today
at 11:20:22 am]
Weird error: component no...
by
wp
[
Today
at 10:22:28 am]
Very Slow Online Package ...
by
Marc
[
Today
at 09:52:13 am]
Velthuis.Console.pas - Wo...
by
Thaddy
[
Today
at 08:55:31 am]
No fpc found on a fresh i...
by
Thaddy
[
Today
at 08:30:15 am]
Lazarus is not working
by
Thaddy
[
Today
at 08:18:33 am]
Rest API chunk file downl...
by
daniel_sap
[
Today
at 07:49:00 am]
Peano Fractals: Rainbow t...
by
Boleeman
[
Today
at 07:19:37 am]
Drive a tank around the s...
by
Boleeman
[
Today
at 06:22:40 am]
DuckHunter Game
by
TRon
[
Today
at 04:19:56 am]
Saving a TImage with a tr...
by
EganSolo
[
Today
at 03:05:03 am]
NIL vs. Assign: when to u...
by
440bx
[
Today
at 01:08:36 am]
Lazarus Instalation Error...
by
TRon
[March 24, 2025, 10:19:44 pm]
How to download/compile l...
by
Theo11
[March 24, 2025, 09:33:30 pm]
IDE tabs and spaces, auto...
by
Martin_fr
[March 24, 2025, 09:17:07 pm]
(Solved) Illegal paramete...
by
PascalDragon
[March 24, 2025, 09:03:12 pm]
MOVED: Trunk 3.3.1 access...
by
PascalDragon
[March 24, 2025, 08:58:18 pm]
Test Regular Expressions
by
Gustavo 'Gus' Carreno
[March 24, 2025, 07:42:00 pm]
GTK3 still alpha
by
han
[March 24, 2025, 05:46:27 pm]
mxMarkEdit as reference m...
by
maxnd
[March 24, 2025, 04:38:51 pm]
[Solved] How to get and u...
by
Hansaplast
[March 24, 2025, 04:19:31 pm]
lazarus-darwin-aarch64-3....
by
Jon Trepte
[March 24, 2025, 03:27:39 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [Solved] GetCurrentDir is giving me location of my shortcut (Read 443 times)
nikel
Full Member
Posts: 240
[Solved] GetCurrentDir is giving me location of my shortcut
«
on:
February 10, 2025, 06:04:18 am »
Hello, I'm trying to get my executeble's location. I had been using
GetCurrentDir
command, I compiled it as msi and installed it. The desktop shortcut is giving me this folder:
C:\Users\User\Desktop
How can I get location of my executable?
«
Last Edit: February 10, 2025, 09:10:21 am by nikel
»
Logged
Fibonacci
Hero Member
Posts: 653
Internal Error Hunter
Re: GetCurrentDir is giving me location of my shortcut
«
Reply #1 on:
February 10, 2025, 06:29:25 am »
GetCurrentDir returns current working directory. For the actual location you can use ParamStr(0):
Code: Pascal
[Select]
[+]
[-]
ExtractFileDir
(
ParamStr
(
0
)
)
If on Windows, you can also use GetModuleFileName:
Code: Pascal
[Select]
[+]
[-]
var
s
:
string
;
begin
setlength
(
s
,
500
)
;
setlength
(
s
,
GetModuleFileName
(
0
,
@
s
[
1
]
,
length
(
s
)
)
)
;
writeln
(
'GetModuleFileName = '
,
ExtractFileDir
(
s
)
)
;
Logged
nikel
Full Member
Posts: 240
Re: GetCurrentDir is giving me location of my shortcut
«
Reply #2 on:
February 10, 2025, 07:43:24 am »
Thanks for the info. I'll try that.
Logged
Zvoni
Hero Member
Posts: 2921
Re: GetCurrentDir is giving me location of my shortcut
«
Reply #3 on:
February 10, 2025, 08:35:52 am »
Application.Location?
Logged
One System to rule them all, One Code to find them,
One IDE to bring them all, and to the Framework bind them,
in the Land of Redmond, where the Windows lie
---------------------------------------------------------------------
Code is like a joke: If you have to explain it, it's bad
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
[Solved] GetCurrentDir is giving me location of my shortcut
TinyPortal
© 2005-2018