mirror of
https://github.com/github/codeql.git
synced 2026-02-14 22:21:06 +01:00
14 lines
344 B
Plaintext
14 lines
344 B
Plaintext
/**
|
|
* @name Extracted files
|
|
* @description Lists all files in the source code directory that were extracted.
|
|
* @kind diagnostic
|
|
* @id cpp/diagnostics/successfully-extracted-files
|
|
* @tags successfully-extracted-files
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from File f
|
|
where exists(f.getRelativePath()) and f.fromSource()
|
|
select f, "File successfully extracted."
|