Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
UNLOCK
kubernetes
Commits
91a4f326
Commit
91a4f326
authored
Nov 11, 2020
by
Koehorst, Jasper
Browse files
checks for hidden files
parent
dca949d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/nl/munlock/irods/Search.java
View file @
91a4f326
...
...
@@ -91,9 +91,12 @@ public class Search {
for
(
String
path
:
paths
)
{
filePathNumber
=
filePathNumber
+
1
;
System
.
out
.
print
(
filePathNumber
+
"\r"
);
Domain
domainTemp
=
new
Domain
(
"file://"
+
"."
+
path
);
domain
.
getRDFSimpleCon
().
getModel
().
add
(
domainTemp
.
getRDFSimpleCon
().
getModel
());
domainTemp
.
close
();
System
.
err
.
println
(
path
);
if
(!
new
File
(
path
).
isHidden
())
{
Domain
domainTemp
=
new
Domain
(
"file://"
+
"."
+
path
);
domain
.
getRDFSimpleCon
().
getModel
().
add
(
domainTemp
.
getRDFSimpleCon
().
getModel
());
domainTemp
.
close
();
}
}
Iterable
<
ResultLine
>
resultLines
=
domain
.
getRDFSimpleCon
().
runQuery
(
"getAssays.txt"
,
true
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment