You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The result from doing an system `stat` on a particular path.
*
* Note: ctime is not same as ctime (Change Time) in `stat`,
* it is creation time maybe fall back to mtime if system not supported it.
*
* Created via `stat! filePath`.
*
* If you want more information, use `stat.full`
*/
caseclassStatInfo(
size: Long,
mtime: FileTime,
ctime: FileTime,
atime: FileTime,
fileType: FileType
) {
In particular the Note in the docstring is confusing. The parameter names could be better but that's an API change so I think clarifying the specific parameters in scaladoc is the way to go.
Also os.stat.full seems to be replaced with os.stat.posix.
The text was updated successfully, but these errors were encountered:
os-lib/os/src/Model.scala
Lines 237 to 253 in 56c38a2
In particular the Note in the docstring is confusing. The parameter names could be better but that's an API change so I think clarifying the specific parameters in scaladoc is the way to go.
Also
os.stat.full
seems to be replaced withos.stat.posix
.The text was updated successfully, but these errors were encountered: