Differences
This shows you the differences between two versions of the page.
guides:programming:programmers_reference_manual:utility_dotnet [2024/06/19 20:20] – created - external edit 127.0.0.1 | guides:programming:programmers_reference_manual:utility_dotnet [2024/10/19 11:42] (current) – bshumsky | ||
---|---|---|---|
Line 12: | Line 12: | ||
CHECKWIN | CHECKWIN | ||
+ | |||
+ | COPYDIR | ||
+ | |||
+ | COPYFILE | ||
GETWINHNDL | GETWINHNDL | ||
Line 18: | Line 22: | ||
MAKEDIR | MAKEDIR | ||
+ | |||
+ | MOVEDIR | ||
+ | |||
+ | MOVEFILE | ||
REMOVEDIR | REMOVEDIR | ||
Line 29: | Line 37: | ||
ZIP | ZIP | ||
- | By default, UTILITY_DOTNET will use .NET 2.0 assemblies to execute these requests; however, if .NET 4.0 assemblies are desired, you may suffix the command with " | + | <del>By default, UTILITY_DOTNET will use .NET 2.0 assemblies to execute these requests; however, if .NET 4.0 assemblies are desired, you may suffix the command with " |
+ | </ | ||
+ | |||
+ | [Updated for OI10] By default, UTILITY_DOTNET will use .NET 4.0 assemblies to execute these requests; however, if .NET 2.0 assemblies are desired, you may suffix the command with " | ||
CHECKWIN: Pass in the handle to the REVDOTNET object for the window you wish to check (PARAM1), as obtained by RUNWIN with PARAM4 = " | CHECKWIN: Pass in the handle to the REVDOTNET object for the window you wish to check (PARAM1), as obtained by RUNWIN with PARAM4 = " | ||
+ | |||
+ | COPYDIR: Pass in the path to the original directory you wish to copy, and the path to the destination location. | ||
+ | |||
+ | COPYFILE: Pass in the path and filename to the original file you wish to copy, and the path and filename you wish to copy it to. Any error messages are returned in STATUS. | ||
GETWINHNDL: Pass in the handle to the REVDOTNET object for the window you wish to check (PARAM1), as obtained by RUNWIN with PARAM4 = " | GETWINHNDL: Pass in the handle to the REVDOTNET object for the window you wish to check (PARAM1), as obtained by RUNWIN with PARAM4 = " | ||
Line 38: | Line 53: | ||
MAKEDIR: Pass in the full path to the directory you wish to create (PARAM1). | MAKEDIR: Pass in the full path to the directory you wish to create (PARAM1). | ||
+ | |||
+ | MOVEDIR: Pass in the path to the original directory you wish to move, and the path to the destination location. | ||
+ | |||
+ | MOVEFILE: Pass in the path and filename to the original file you wish to move, and the path and filename you wish to move it to. Any error messages are returned in STATUS. | ||
REMOVEDIR: Pass in the full path to the directory you wish to remove (PARAM1). | REMOVEDIR: Pass in the full path to the directory you wish to remove (PARAM1). |