0 votes

How can I check the file permission whether it is accessible (downloadable or deletable) using FtpItem.Permissions ?

by (8.8k points)

1 Answer

0 votes
 
Best answer

Check if required permission is in the list:

items[0].Permissions.Contains(FtpPermission.Read)
by (297k points)
...