-
Hello, I found an issue with Appreciate any help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Attached is screenshot of Windows telling me that |
Beta Was this translation helpful? Give feedback.
-
Well, it's more complicated that that. But Windows doesn't have a direct
I'd argue it's neither. It's not intended by the |
Beta Was this translation helpful? Give feedback.
Well, it's more complicated that that.
ls
is supposed to show you information about files. At its most basic, that's the names of the files in the current directory. And it needs to gather this information before it can display it. Sincels
is designed for unix systems it usesstat()
(or similar) for that.stat()
provides a bunch of info about a file, including its size and the time it was last modified.But Windows doesn't have a direct
stat()
equivalent, so the MSYS2 runtime has to provide astat()
implementation that cobbles together the required information from various Windows functions. One or more of them requ…