We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
os.path
1 parent f14e3f6 commit 81adb7dCopy full SHA for 81adb7d
python/ql/test/library-tests/frameworks/stdlib/FileSystemAccess.py
@@ -27,3 +27,10 @@ def through_function(open_file):
27
open_file.write("foo") # $ fileWriteData="foo" getAPathArgument="path"
28
29
through_function(f)
30
+
31
+from os import path
32
+path.exists("filepath") # $ MISSING: getAPathArgument="filepath"
33
+path.isfile("filepath") # $ MISSING: getAPathArgument="filepath"
34
+path.isdir("filepath") # $ MISSING: getAPathArgument="filepath"
35
+path.islink("filepath") # $ MISSING: getAPathArgument="filepath"
36
+path.ismount("filepath") # $ MISSING: getAPathArgument="filepath"
0 commit comments