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.41. SysIsFileSparse (Windows only)
Checks if a file is flagged as Sparse. 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 Sparse or does not exist.
1
The file is flagged as Sparse.
Example 8.32. RexxUtil — SysIsFileSparse
if
SysIsFileSparse
(
InputFile
)
then
say
"
File is Sparse!
"
else
say
"
File is not Sparse.
"
Prev
8.40. SysIsFileOffline (Windows only)
Up
Home
Next
8.42. SysIsFileTemporary (Windows only)