You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
Anyone know how to find out where a program was executed i.e. if the user typed c:\dr\myprog is it possible to extract the c:\dr information from the command line?
Haven't used it for a long time, but it should work....
Code:
function ExecPath$ public
dim Temp as integer, TempPath as string 'local variables
TempPath = ""
reg %ax, &h6200 'get PSP function
call interrupt &h21 'call DOS
def seg = reg(%bx) 'load PSP segment
temp = peeki(&h2C)
def seg = temp 'load env.tab segment
TempPath = peek$(0,1024)
def seg
Temp = instr(TempPath, chr$(0,0))
if Temp then 'if found,add 4
incr Temp, 4
TempPath = mid$(TempPath,Temp,128)
TempPath = extract$(TempPath, chr$(0)) 'startup directory
do
TempPath = left$(TempPath,len(TempPath)-1) 'cut string until
loop until (right$(TempPath,1) = "\") 'first "\" separator
if (mid$(TempPath,2,2) <> ":\") then TempPath = "" 'test if path valid
end if
ExecPath = ucase$(TempPath)
end function
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment