keypuncher Posted April 28, 2008 Posted April 28, 2008 In a Windows OS, primarily Win XP environment Using script " @WinDir" we can locate the "Temp" directory that is in for example: "c:\Windows\Temp" This can also be found via a command / run line entry of " Temp in most cases it will be found then at "(Drive letter):\Windows\Temp" However I wish for the script to locate and perform operations on the other Temp directory. This one can normally be found via a command / run line entry of " %Temp% in some cases it will be found then at "(Drive Letter):\Documents and Settings\(username)\Local Settings\Temp However it can be on located in different areas depending on system configuration I can locate and do some deleting etc. by writing script that will use the command line, however that runs into more problems when files are in use etc. It would be much nicer if there were a command to locate it easier. Such as in the examples of: "$path = @WindowsDir & '\Temp'" or "$path = @AppData & '\Microsoft\Outlook' So I am looking for a simple script line to point to the same location as the run line command "%Temp%"
monoceres Posted April 28, 2008 Posted April 28, 2008 @TempDir Broken link? PM me and I'll send you the file!
GEOSoft Posted April 28, 2008 Posted April 28, 2008 @TempDir or EnvGet("TEMP") George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
Developers Jos Posted April 28, 2008 Developers Posted April 28, 2008 @TempDir ? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
keypuncher Posted April 28, 2008 Author Posted April 28, 2008 @TempDirorEnvGet("TEMP")I appreciate the help, however...Unfortunately, in my tests, the aforementioned code points to the same directory as " @WindowsDir & '\Temp' "Which is equal to using the command / run line entry of: TempThat returns a path of: " I:\WINDOWS\Temp " On this system I am at right now.I am looking to point to a different Temp folder. The one that would be found by: using the command / run line entry of: " %Temp% "On this system I am at right now that would return a path of: " I:\DOCUME~1\user\LOCALS~1\Temp " Which in long hand would equate to: " I:\Documents and Settings\user\Local Settings\Temp "Perhaps I'm not using it coding it correctly. Any other ideas?
GEOSoft Posted April 28, 2008 Posted April 28, 2008 I'm not sure why that's happening to you. On my system both methods point to " C:\DOCUME~1\user\LOCALS~1\Temp " as does Start >> Run >> %TEMP% Must be something in the environment settings of that machine. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
AdmiralAlkex Posted April 28, 2008 Posted April 28, 2008 Try this: MsgBox(0, EnvGet("TEMP"), @TempDir) I get(swe winxp sp2) --------------------------- C:\DOCUME~1\RKESKG~1\LOKALA~1\Temp --------------------------- C:\DOCUME~1\RKESKG~1\LOKALA~1\Temp --------------------------- You must be doing something else wrong if you get windows\temp .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
GEOSoft Posted April 28, 2008 Posted April 28, 2008 As an afterthought try EnvGet("%TMP%") That is often not the same folder as %TEMP% George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
AdmiralAlkex Posted April 28, 2008 Posted April 28, 2008 (edited) As an afterthought tryEnvGet("%TMP%")That is often not the same folder as %TEMP%Are you sure about that?? Here it goes to the same as the other two...C:\DOCUME~1\RKESKG~1\LOKALA~1\TempC:\DOCUME~1\RKESKG~1\LOKALA~1\TempC:\DOCUME~1\RKESKG~1\LOKALA~1\Temp Edited April 28, 2008 by AdmiralAlkex .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
weaponx Posted April 28, 2008 Posted April 28, 2008 I'm running a fresh installation of XP Pro Sp2. When I go to System Properties > Advanced > Environment variables I have: User variables for username: TEMP C:\Documents and Settings\username\Local Settings\Temp TMP C:\Documents and Settings\username\Local Settings\Temp System variables: TEMP C:\Windows\Temp TMP C:\Windows\Temp %TEMP% = C:\Windows\Temp @TempDir = C:\WINDOWS\TEMP
GEOSoft Posted April 28, 2008 Posted April 28, 2008 Are you sure about that?? Here it goes to the same as the other two...That is normal however the Windows Environment CAN point to a different folder for %TMP% and I have seen it that way. During a normal installation of Windows they will point to the same folder but another app could change one environment setting or the other. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
keypuncher Posted April 29, 2008 Author Posted April 29, 2008 To reafirm in part. I'm afraid people think I am crazy (Ok, maybe I am but I don't want everyone to know it)Depending on the system configuration and applications installed the two different temp files can be located in differet areas (paths)So do we have a good easy way of putting in for the script to locate and then input into the appropriate line so we can have it take actions on the files in those different folders individually. Such as FileDelete, FileRecycle or other actions.Please do not take this as condecending, I just want to simplify and be accurate. Try this scenario.Take an XP system, with more then 1one user account. Have the OS installed on a drive other then C.Have the My Documents folder (or other shell folders) changed to a different directory then what is automatically assigned by MSFT. Easily done with a small registry change.click: <start>click: <run>enter: tempclick: <OK> See what directory path you getclick: <start>click: <run>enter: %temp%click: <OK> See what directory path you getI believe you will find them to be different.Obviously I can point to it on a particular system. I am looking for thsi to function properly on many different systems when the %temp% & Temp directories might be allocated in unknown areas.That is normal however the Windows Environment CAN point to a different folder for %TMP% and I have seen it that way. During a normal installation of Windows they will point to the same folder but another app could change one environment setting or the other.
MrCreatoR Posted April 29, 2008 Posted April 29, 2008 (edited) «Start - Run - Temp» will show you the "C:\Windows\Temp" directory because the "WorkingDir" for FileRun function (program?) is "C:\Windows" this is the first found dir in the PATH environment (see next posts), therefore you get executed the only found Temp directory in the current path (dir), wich is a Windows directory.Just try instead of "Temp" writing "..\Temp", you will get executed "C:\Temp" directory (if you got this folder there ).But if you use the %Temp% environment, you get the correct path to the temporary directory defined by your system.Conclusion: Use @TempDir macro and be happy Edited May 1, 2008 by MsCreatoR Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team
keypuncher Posted April 29, 2008 Author Posted April 29, 2008 I can't be happy if I cannot point to the correct directory. @TempDir does not point to the correct directory. That seems a bit like looking for something in the wrong location because the "light is better over there" It still wont help me find what I am looking for. Anybody have any other suggestions? "But if you use the %Temp% environment, you get the correct path to the temporary directory defined by your system." Conclusion: Use @TempDir macro and be happy
MrCreatoR Posted April 29, 2008 Posted April 29, 2008 It still wont help me find what I am looking forAnd what exactly are you looking for, what you expecting to be set in the %Temp% environment, or in @TempDir macro? Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team
herewasplato Posted April 29, 2008 Posted April 29, 2008 (edited) click: <start> click: <run> enter: temp click: <OK> See what directory path you getPlease do not take this as condescending, the OS looks for a file/folder that matches using the order of the paths in the PATH settings. I'm not sure what the point of your test was/is. start > run > Cursors > ok --- opens C:\WINDOWS\Cursors start > run > Config > ok ---- opens C:\WINDOWS\system32\config Even though there is a folder named C:\WINDOWS\Config... ...because C:\WINDOWS\system32 comes before C:\WINDOWS in my PATH settings. For me: start > run > temp > ok --- opens an error message ('cuz I have no folder named C:\WINDOWS\Temp) Okay, let me create a folder named C:\WINDOWS\Temp Okay - now I have that folder - your test start > run > temp > ok --- opens a Windows Explorer view of that folder. C:\WINDOWS\Temp is not found in my OS Env settings... ...so the test of... start > run > temp > ok ...tells you very little. So, I probably wasted all of that typing because you already knew all of that and I just did not understand what you wanted us to learn about our computer's settings via that test. Now, back to AutoIt. You have posted some things (as have others in this thread) that don't make sense to me. [stop laughing] @MsCreatoR «Start - Run - Temp» will show you the "C:\Windows\Temp" directory because the "WorkingDir" for FileRun function (program?) is "C:\Windows", therefore ...If that were the case, then start > run > Config > ok should open C:\WINDOWS\Config @weaponx %TEMP% = C:\Windows\Temp @TempDir = C:\WINDOWS\TEMPThat ain't normal - possible, but not normal. Care to run AdmiralAlkex's codeMsgBox(0, EnvGet("TEMP"), @TempDir)and report back? @keypuncher I must summarize - cannot quote concisely: EnvGet("TEMP") = "I:\WINDOWS\Temp" start > run > %TEMP% > ok = "I:\DOCUME~1\user\LOCALS~1\Temp" That is not supposed to happen... so let's keep working on this. Edited April 29, 2008 by herewasplato [size="1"][font="Arial"].[u].[/u][/font][/size]
MrCreatoR Posted April 29, 2008 Posted April 29, 2008 (edited) What a research around Temp ...If that were the case, thenstart > run > Config > ok should open C:\WINDOWS\ConfigWell, after reading your tests, i have to not agree with my self - Yes, it seems that the FileRun check first in the PATH, so probably there is something wrong in the "PATH" of @keypuncher.P.SI just trying to understand, what is the difference where the Temp directory will be kept, what is the purpose of all this? Edited April 29, 2008 by MsCreatoR Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team
herewasplato Posted April 29, 2008 Posted April 29, 2008 ...P.S I just trying to understand, what is the difference where the Temp directory will be kept, what is the purpose of all this?I was attempting to show that start > run > temp > ok may be a red heiring to this discussion. It does not tell you much (if anything) about the OS Env settings. [but maybe the OP was not saying that it did tell you info about the OS Env settings - I just don't know.] I want to know how this can happen: EnvGet("TEMP") = "I:\WINDOWS\Temp" start > run > %TEMP% > ok = "I:\DOCUME~1\user\LOCALS~1\Temp" I have scripts that use EnvGet("TEMP"). [size="1"][font="Arial"].[u].[/u][/font][/size]
MrCreatoR Posted April 29, 2008 Posted April 29, 2008 I want to know how this can happen:It's strange indeed, when i run this example: Opt("ExpandEnvStrings", 1) ConsoleWrite(EnvGet("Temp") & @LF & "%Temp%" & @LF & @TempDir) I get all three results the same: C:\DOCUME~1\User\LOCALS~1\Temp @keypuncher What you get with this example? Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now