A Microsoft file hosting and synchronization service.
Playing with another file after reading this stack exchange post:
https://unix.stackexchange.com/questions/436314/how-to-get-the-physical-size-of-a-file-in-linux
"ls -l will give you the apparent size of the file, which is the number of bytes a program would read if it read the file from start to finish. du would give you the size of the file "on disk"."
I tried these commands:
$ ls -l /Users/me/OneDrive\ -\ Me/test_file.pdf -rwxrwxrwx@ 1 me staff 511K Jul 23 15:37 /Users/me/OneDrive\ -\ Me/test_file.pdf $ du -h /Users/me/OneDrive\ -\ Me/test_file.pdf 0B /Users/me/OneDrive\ -\ Me/test_file.pdf
The "apparent size" of my test file was 511k, while the "size of the file on disk" is 0B. My hunch is MacOS is using the "apparent size" and not the "size of the file on disk" when computing available space in Storage Management.