FS_ReadDirectoryChanges_GetΒΆ
FS_ReadDirectoryChanges_Get returns all file names logged since the last time the function FS_ReadDirectoryChanges_Get or FS_ReadDirectoryChanges_Create was invoked.
- smFiles = FS_ReadDirectoryChanges_Get(dwi)
Return Value
smFiles is a string matrix with two columns:
Column |
Meaning |
---|---|
1 |
File name without the directory name given in FS_ReadDirectoryChanges_Create. |
2 |
Action |
The action value is one of the following 5 characters:
Value |
Meaning |
---|---|
a |
add: File has been added. |
r |
remove: File has been removed. |
m |
modified: File has been modified. |
o |
old name: File has been renamed. |
n |
new name: File has been renamed. |
Parameters
- dwi
dwi is an object created by FS_ReadDirectoryChanges_Create.
History
Version |
Description |
---|---|
5.5.0 |
New |
id-2076860