- Aug
- 2,059
- 83
Code:
_x64: 1
_admin: 1
_elevated: 1
TCC 32.10.21 x64 Windows 10 [Version 10.0.19045.4529]
BuildNumber Caption CSDVersion OSArchitecture Version
19045 Microsoft Windows 10 Pro 64-bit 10.0.19045
22H2
I have my temp folder;
Code:
E:\Utils>set temp
r:\temp
I can use the dir command to see if the file exists;
Code:
E:\Utils>dir %temp\hbcode.hb
Volume in drive R is unlabeled Serial number is 6edd:8cb4
Directory of R:\temp\hbcode.hb
2024-06-17 12:21 159 hbcode.hb
This works;
Code:
E:\Utils>*list %temp\hbcode.hb
This does not work;
Code:
E:\Utils>internal list %temp\hbcode.hb
TCC: (Sys) The system cannot find the path specified.
"E:\Utils\%temp\hbcode.hb"
Internal seems to think that %temp is in my current directory,
which is E:\Utils.
This works;
Code:
E:\Utils>internal list r:\temp\hbcode.hb
This does not work;
Code:
E:\Utils>internal dir %temp\hbcode.hb
Volume in drive E is New Volume Serial number is 2c3e:6d62
TCC: (Sys) The system cannot find the file specified.
"E:\Utils\%temp\hbcode.hb"
0 bytes in 0 files and 0 dirs
Internal seems to think that %temp is in my current directory,
which is E:\Utils.
Joe