Prev
Open Object Rexx
Next
Code style
dark
electric
light
print
rgfdark
rgflight
tokio-day
tokio-night
vim-dark-blue
vim-dark-darkblue
vim-dark-desert
vim-dark-elflord
vim-dark-evening
vim-dark-industry
vim-dark-koehler
vim-dark-murphy
vim-dark-pablo
vim-dark-ron
vim-dark-slate
vim-dark-torte
vim-light-delek
vim-light-morning
vim-light-peachpuff
vim-light-shine
vim-light-zellner
8.42. SysIsFileTemporary (Windows only)
Checks if a file is flagged as Temporary. This function does not support wildcard specifications.
Parameters:
filename
The name of the file, subdirectory or link to check.
Returns:
0
The file is not flagged as Temporary or does not exist.
1
The file is flagged as Temporary.
Example 8.33. RexxUtil — SysIsFileTemporary
if
SysIsFileTemporary
(
InputFile
)
then
say
"
File is Temporary!
"
else
say
"
File is not Temporary.
"
Prev
8.41. SysIsFileSparse (Windows only)
Up
Home
Next
8.43. SysLinVer (Linux Only)