Files
codeql/swift/ql/src/diagnostics/ExtractedFiles.ql
2024-01-19 17:58:58 +00:00

14 lines
329 B
Plaintext

/**
* @name Extracted files
* @description Lists all files in the source code directory that were extracted.
* @kind diagnostic
* @id swift/diagnostics/successfully-extracted-files
* @tags successfully-extracted-files
*/
import swift
from File f
where exists(f.getRelativePath())
select f, "File successfully extracted."