isFileEncrypted
isFileEncrypted(S_name) =>t/nil
Description
Checks if a file exists and is encrypted.
Similar to isFile, except that it returns t only if the file exists and is encrypted. Uses the current SKILL path for relative paths. A path that is anchored to the current directory, for example, ./, ../, or ../../.., and so on, is not considered as a relative path.
Arguments
Value Returned
Examples
isFileEncrypted( "~/testfns.il")
=> nil
encrypt( "~/testfns.il" "~/testfns.ile")
isFileEncrypted( "~/testfns.ile")
=> t
Related Topics
Return to top