what is the difference between files and resources...
# ktor
x
what is the difference between files and resources?
o
Files are retrieved directly from the file system, but you have to know the path. Resources are using Java’s resource streams, like reading from JAR/WAR, etc. Otherwise they are the same.
👍 1