mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
193 B
Plaintext
13 lines
193 B
Plaintext
/**
|
|
* @id py/examples/filename
|
|
* @name File with given name
|
|
* @description Finds files called `spam.py`
|
|
* @tags file
|
|
*/
|
|
|
|
import python
|
|
|
|
from File f
|
|
where f.getName() = "spam.py"
|
|
select f
|