Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/xpipe-io/xpipe
/ isDotFile
Method
isDotFile
core/src/main/java/io/xpipe/core/FilePath.java:120–124 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
118
}
119
120
public
boolean isDotFile() {
121
var name = getFileName();
122
var lastDot = name.lastIndexOf(
"."
);
123
return
lastDot == 0;
124
}
125
126
public
FilePath getBaseName() {
127
var name = getFileName();
Callers
1
renameFile
Method · 0.80
Calls
2
getFileName
Method · 0.95
lastIndexOf
Method · 0.80
Tested by
no test coverage detected