mirror of
https://github.com/github/codeql.git
synced 2026-07-15 08:18:18 +02:00
8 lines
206 B
Plaintext
8 lines
206 B
Plaintext
import csharp
|
|
|
|
from File f, string relative
|
|
where
|
|
not f.getURL().matches("file://C:/Program Files/%") and
|
|
if exists(f.getRelativePath()) then relative = "relative" else relative = ""
|
|
select f, relative
|